@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container{
    width: 550px;
    border: 1px grey solid;
    border-radius: 20px;
}
.container .form .logo{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container .form .logo > * {
    margin: 0;
    padding: 0;
}
.container .form{
    padding: 20px;
}
.form .web_logo{
    margin-top: 0;
    height: 150px;
    width: 150px;
}
span{
    color: #1C2856;
    font-size: 32px;
    font-weight: bold;
}
.form .input-field{
    position: relative;
    margin-top: 20px;
    padding-top: 10px;
    height: 39px;
    width: 100%;
} 
.form .input-field input{
    height: 80%;
    width: 100%;
    border: 1px solid #1C2856;
    border-radius: 25px;
    padding: 23px;
}
.styled-input::placeholder{
    padding: 0px 0px 0px 15px;
    font-size: 13px;
    color: black;
}
.input-field i{
    position: absolute;
    right: 25px; /* Adjust this for the right position of the icon */
    top: 85%;
    transform: translateY(-50%); /* Center icon vertically */
    color: #1C2856;
    cursor: pointer;
}
.form .box-text1{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 10px;
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;

}
.form a{
    text-decoration: none;
    color: #1C2856;
}
.form a:hover{
    text-decoration: underline;
}
.form button{
    width: 100%;
    background-color: #1C2856;
    padding: 10px;
    border-radius: 30px;
    border: none;
    color: white;
    font-size: 17px;
    font-weight: bold;
}
.form .button:hover{
    cursor: pointer;
}
.form .box-text2{
    display: flex;
    justify-content: center;
    padding-top: 25px;
    font-size: 10px;
}
.form .logo2{
    display: flex;
    justify-content: center;
}
.form .logo2 span{
    line-height: 110px;
    font-size: 16px;
    padding-right: 14px;
    font-family: 'Itim', sans-serif;
    color: #00206A;
}




@media screen and (max-width: 1024px) {
    .container{
        width:60%;
        height: auto;
        padding: 15px;
    }
}
@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
        width: 90%;
        height: auto;
    }
    .form .web_logo {
        height: 80px;
        width: 80px;
    }
    span {
        font-size: 28px;
    }
    .form .input-field input {
        height: 40px;
        padding: 15px;
    }
    .form i{
        bottom: 1%;
        right: 15px;  
    }
    .form button {
        font-size: 16px;
        padding: 12px;
    }
    .form .box-text1 {
        font-size: 12px;
    }

    .form .box-text2 {
        font-size: 12px;
    }

}
@media screen and (max-width: 480px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    .form .web_logo {
        height: 70px;
        width: 70px;
    }

    span {
        font-size: 24px;
    }

    .form .input-field input {
        height: 35px;
        padding: 10px;
    }
    .form i{
        font-size: 10px;
    }

    .form button {
        font-size: 14px;
        padding: 10px;
    }

    .form .box-text1 {
        font-size: 10px;
    }

    .form .box-text2 {
        font-size: 10px;
    }
    .form .logo2 img{
        height: 70;
        width: 140;
    }
    .form .logo2 span {
        padding-right: 0;
        font-size: 14px;
    }
}
