@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;
    height: 490px;
    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;
} 
.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;
}
.input-field .btn{
    position: absolute;
    top: 30%;
    right: 0px;
    border-radius: 30px;
    width: 23%;
    height: 44px;
    font-size: 14px;
    background-color: #1C2856;
     color: white;
}
.input-field .btn:hover{
    cursor: pointer;
}
.form .button{
    width: 100%;
    background-color: #1C2856;
    padding: 10px;
    border-radius: 30px;
    border: none;
    color: white;
    font-size: 17px;
    font-weight: bold;
    margin-top: 25px;
}
.form .button:hover{
    cursor: pointer;
}




@media screen and (max-width: 1024px) {
    .container{
        width:50%;
        height: 550;
        padding: 15px;
    }
}
@media screen and (max-width: 992px){
    .container{
        width:60%;
        height: 600;
        padding: 15px;
    }
}
@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
        width: 90%;
        height: 400;
    }
    .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;
    }
}
@media screen and (max-width: 576px){
    .container {
        width: 95%;
        height: 400px;
        padding: 10px;
    }
}
@media screen and (max-width: 480px) {
    .container {
        width: 95%;
        height: 400px;
        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;
    }
}
