@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
   background: #454C98;

.wrapper{
    width: 400px;
    background: #fff;
    border-radius: 12px;
    color: #333;
    padding: 30px 30px 25px;
    margin-top: 40px;
    height:800px;
}

}
.wrapper h1{
    font-size: 2rem;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 700;
    color: #4e54c8;
}

.wrapper .input-box{
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 18px;
}

.input-box .input-field{
    position: relative;#7C7FA3
    width:100%;
    height: 48px;
    background: #f3f3f3;
    border-radius: 6px;
    display: flex;
    align-items: center;
}


.input-box .input-field input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none; /* Removes underline/border */
    outline: none;
    font-size: 16px;
    color: #333;
    border-radius: 6px;
    padding: 0 15px 0 40px;
}



.input-box .input-field input::placeholder{
    color: #888;
}

.input-box .input-field i{
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #4e54c8;

}

.wrapper label{
    display: block;
    font-size: 14px;
    margin: 10px 0 18px;
    color: #555;
}

.wrapper label input{
    accent-color: #4e54c8;
    margin-right: 7px;
}

.wrapper .btn{
    width: 100%;
    height: 45px;
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
    border: none;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(31, 38, 135, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    transition: background 0.2s;
}
.wrapper .btn:hover {
    background: linear-gradient(135deg, #8f94fb 0%, #4e54c8 100%);
}
.footer{
    font-size: 15px;
    top: 0;
    
}
.footer p{
    color:red;
    
}
    


@media screen and (max-width:650px) {
    
    
}
.footer{
    padding-top: 60px;
    padding-bottom: 30px;
}
   /* Default styles */
   body {
     font-size: 16px;
   }
   
   /* Styles for screens smaller than 768px (e.g., mobile devices) */
   @media (max-width: 768px) {
     body {
       font-size: 14px;
     }
   }
   
   /* Styles for screens larger than 1200px (e.g., desktops) */
   @media (min-width: 1200px) {
     body {
       font-size: 18px;
     }
   }
   
