
body
{
    margin: 0;  
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.header{
    /* position: fixed; */
    width: 100%;
    /* padding: 5px; */
    /* height: 100px; */
    background-color: rgb(234, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}


.innercontents{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .innercontents .left_icon img{
    width: 140px;
}
.header .innercontents svg {
    width: 30px;
    color: white;
}








.writeupsections{
    padding-top: 20px;
}

.inputsections{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.inputsections .inputsystem{ 
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inputsections .othersidetext{
    display: flex;
    gap: 20px;
}

.inputsections .othersidetext a{
    color: rgb(54, 54, 54);
    font-weight: 600;
}



.inputsections .askquestionssections{
    justify-content: start;
    align-items: start;
    display: flex;
}

.writeupsections{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.writeupsections span{
    color: rgb(87, 87, 87);
}
.writeupsections a{
    color: black;
}
.writeupsections svg{
    width: 20px;
}
.writeupsections .navigations{
    display: flex;
    align-items: center;
    gap: 4px;
}

.containerinputs {
    width: 100%;
    border: 1.1px solid grey;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    /* padding: 6px; */
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Highlight parent when input is focused */
.containerinputs:focus-within {
    /* border-color: rgba(21, 115, 255, 0.5); */
    outline: 2px solid  rgba(21, 115, 255, 0.5);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(21, 115, 255, 0.25);
}

.textarea {
    padding-top: 7px;
    color: rgba(75, 75, 255, 0.468);
    padding-left: 10px;
    font-weight: 500;
    font-size: 14px;
}

.inputsections {
    gap: 0;
    padding: 0;
}

.inputsystem {
    padding: 0;
}

.inputsections .inputsystem input {
    width: 100%;
    padding: 10px;
    flex-grow: 1;
    font-size: 18px;
    font-weight: 600;
    border-radius: 9px;
    outline: none;
    border: none;
}

.inputsections .inputsystem button {
    /* padding: 10px 18px 10px 18px; */
    padding: 13px;
    padding-left: 39px;
    padding-right: 39px;
    border-radius: 9999px;
     background-color: rgb(234, 0, 0);
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 17px;
    font-weight: 600;
    border: none;
}








@media screen and (max-width:700px) {
    .inputsections .inputsystem{ 
        width: 90%;
        font-size: 13px;
    }
}