

body {
    font-family: 'Montserrat' sans-serif;
    font-weight: 500;
    overflow: hidden;
    background-color: rgb(2, 12, 22);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    height: 100%;
}


.logo-img {
    max-width: 100px;
    align-items: center;
}

.logo-img img {
    width: 100%;
    height: 140%;
    scale: 1.5;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 0 80px;
    transition: 200ms;
}

.forgot-password{
    font-family: 'Montserrat';
    background-color: rgb(5, 18, 30);
    backdrop-filter: blur(50px);
    border-radius: 25px;
    width: 500px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    padding: 20px 40px;
    gap: 20px;
}

.forgot-password .forgot-password-text {
    width: 100%;
    height: 40px;
    margin: 15px 0 30px;
}

.forgot-password h3 {
    color: aliceblue;
    text-align: center;
    font-weight: bold;
}

.forgot-password p{
    color: aliceblue;
    text-align: center;
    font-size: 0.825rem;
    margin-top: 20px;

}

#forgot-password-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}


.input-box {
    width: 100%;
    height: 40px;
    margin: 5px 0;
}
    


.input-box ::placeholder {
    color: rgba(218, 232, 248, 0.5);
}

.input-box input {
    font-size: 16px;
    font-weight: 500;
    height: 100%;
    width: 100%;
    color: rgba(218, 232, 248, 0.5);
    background-color: rgba(19, 43, 65, 0.5);
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.005);
    border: none;
    padding: 0 5%;
    
}
form{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
button {
    text-align: center;
    
    width: 70%;
    height: 40px;
    background-color: rgb(0, 195, 255);
    border-radius: 10px;
    font-weight: 600;
    border: none;
    
    transition: 200ms;
}

button:hover {
    text-align: center;
    
    width: 70%;
    height: 40px;
    background-color: #82dffc;
    border-radius: 10px;
    
    
    transition: 100ms ease-in;
}

@media screen and (max-width: 560px) {

    body {
        font-family: 'Montserrat' sans-serif;
        font-weight: 500;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
    }

    main {
        padding: 0 20px;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .logo-img {
        max-width: 100px;
        align-items: center;
    }

    .logo-img img {
        width: 100%;
        height: 140%;
        scale: 1;
        object-fit: cover;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        margin: 0 0 20px 0;
        transition: 200ms;
    }

    .forgot-password {
        font-family: 'Montserrat';
        /* background: radial-gradient(circle, rgb(2,12,22) 0%, rgb(2,12,22) 100%); */
        background-color: rgb(5, 18, 30);
        backdrop-filter: blur(50px);
        border-radius: 25px;
        width: 100%;
       
        height: max-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 30px;
        margin: 0 20px;
    }

    

    .forgot-password  h3 {
        color: aliceblue;
        font-size: 18pt;
        text-align: center;
        font-weight: bold;
    }
    
    
    .forgot-password p{
        color: aliceblue;
        text-align: center;
        font-size: 0.75rem;
        margin-top: 10px;
    
    }

    .forgot-password  .forgot-password-text {
        width: 100%;
        height: 40px;
        margin: 5px 0 15px 0;
    }

    button {
        text-align: center;
        padding: 11px;
        width: 70%;
        height: 40px;
        /* background-color: #2DE288; */
        background-color: rgb(0, 195, 255);
        border-radius: 20px;
        font-weight: 600;
        border: none;
        margin: 15px 0 5px 0;
        transition: 200ms;
    }

    button:hover {
        text-align: center;
        padding: 11px;
        width: 70%;
        height: 40px;
        /* background-color: #2DE288; */
        background-color: #82dffc;
        border-radius: 20px;
        margin: 15px 0 5px 0;
        transition: 100ms ease-in;
    }

    .other-login {
        margin: 15px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .register p2{
        margin-top: 10px;
    }
}