*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

}
section{ 
    padding: 20px;
    overflow: hidden;
    }

section .header{
    text-align: center;
padding-bottom: 0px;
}

.header h2{
    font-size: 32px;
    font-weight: 600px;
    margin-bottom:20px ;
    padding-bottom: 20px;
    position: relative;
}
.header h2::after{
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
display: block;
width: 50px;
height: 3px;
background:#00b7ff;
margin: auto;
}


.container{
max-width:1000px;
max-height: 400px;
box-shadow: 8px 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 10px;
margin-top: 20px;
margin-bottom: 10px;
margin-left: 250px;
display:flex;
transition: 0.4s all ease-in-out;
}

.info_container{
padding: 12px;
max-width: 200%;
width: 200%;
background: #4794e7;
border-radius: 10px 0px 0px 10px;
color: white;
width: 50%;
height: 150%;
background-image: url(./loginbackround.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}

.info_container .info_item{
    padding:10px;
  background: linear-gradient(135deg, #1e90ff, #00bfff, #75c4f6);
    border-radius: 10px;
    margin-bottom: 20px;
}



.info_container .info_item:last-child{
    margin: 0;
}

.info_item .icon{
    float: left;
    clear: left;
    margin-right: 15px;
    height: 75px;
}

.icon i{
    font-size: 20px;
    color: #fff;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.info_item:hover i{
    background: #fff;
  background: linear-gradient(135deg, #1e90ff, #67d3f7, #cfe9fa);
  
}

.information h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.information p{
    font-size: 15px;
    line-height: 1.7;
}

.input_container{
    max-width: 65%;
    width: 100%;
    padding: 30px;
}

form .row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

form .form_control{
    border: 1px solid #ced4da;
    outline: none;
    font-size: 14px;
    padding: 11px 15px;
    color: #212529;
    width: 100%;
    margin-bottom: 15px;
    transition: 0.3s;
    line-height: 1.5;
}

.form_control:focus{
    border-color: #4794e7;
}

textarea{
    resize: none;
    font-family: sans-serif;
}

.btn{
    width: 100%;
    text-align: center;
}

.btn button{
  background: linear-gradient(135deg, #1e90ff, #00bfff, #83cefc);
    border: 0;
    padding: 10px 20px;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 400;
}

.btn button:hover{
  background: linear-gradient(135deg, #83cefc, #00bfff, #1e90ff);
}

@media screen and (max-width: 1400px) {
    
    .container{
        max-width: 1100px;
    }

    .information p{
        font-size: 13px;
    }
}

@media screen and (max-width: 1200px){
    .container{
        max-width: 900px;
    }
}

@media screen and (max-width: 991px){
    .container{
        max-width: 768px;
        flex-direction: column;
    }

    .info_container, .input_container{
        max-width: 100%;
    }

    .info_container{
        border-radius: 10px 10px 0 0;
    }

    .input_container{
        padding-top: 50px;
    }
}

@media screen and (max-width: 768px){
    section{
        padding: 50px 5px;
    }
    .container{
        max-width: 600px;
    }
    form .row{
        flex-direction: column;
        gap: 0;
    }
}
#logo {
  height: 60px;           /* Visible and balanced */
  width: auto;            /* Keeps original aspect ratio */
  margin-right: 20px;     /* Spacing from next element */
  object-fit: contain;    /* Avoids distortion or cropping */
  vertical-align: middle; /* Aligns well with text/nav */
  display: inline-block;  /* Keeps inline flow with nav */
}
