.container-forget-password {
    background-color: #005;
    display: grid; 
    gap: 0px 0px; 
    margin: 0;
    padding: 0;
    border: thick double #006;
    border-width: 0.4em;
}
.container-forget-password:hover { 
    background-color: #004;
    border: thick double #009;
    border-width: 0.4em;
}

@media only screen and (max-width: 700px) {
    .container-forget-password {
        border-radius: 350px;
        grid-template-columns: 1.2fr 1fr 3fr 1fr 1.2fr; 
        grid-template-rows: 0.6fr 0.2fr 0.1fr 0.4fr 0.1fr 1.2fr 0.6fr 0.2fr 0.4fr 1.2fr; 
        grid-template-areas: 
        ". . . . ."
        ". title-forget-password title-forget-password title-forget-password ."
        ". . . . ."
        ". notification-forget-password notification-forget-password notification-forget-password ."
        ". . . . ."
        ". email-forget-password email-forget-password email-forget-password ."
        ". . . . ."
        ". . submit-forget-password . ."
        ". . . . ."
        "back-forget-password back-forget-password back-forget-password back-forget-password back-forget-password"; 
    }
}

@media only screen and (min-width: 700px) {
    .container-forget-password {
        border-radius: 50%;
        grid-template-columns: 1.2fr 1fr 3fr 1fr 1.2fr; 
        grid-template-rows: 1.2fr 0.2fr 0.2fr 0.6fr 0.2fr 1.5fr 1.2fr 0.3fr 1.5fr 1.2fr; 
        grid-template-areas: 
        ". . . . ."
        ". . title-forget-password . ."
        ". . . . ."
        ". notification-forget-password notification-forget-password notification-forget-password ."
        ". . . . ."
        ". email-forget-password email-forget-password email-forget-password ."
        ". . . . ."
        ". . submit-forget-password . ."
        ". . . . ."
        "back-forget-password back-forget-password back-forget-password back-forget-password back-forget-password"; 
    }
} 

.title-forget-password { 
    grid-area: title-forget-password;
    background-color: #004;
    border-radius: 50%;
    border: thick double #006;
    border-width: 0.4em;
}
.title-forget-password:hover { 
    background-color: #006;
    border: thick double #009;
    border-width: 0.4em;
}
.notification-forget-password { 
    grid-area: notification-forget-password; 
    color: #f90;
    font-size: 25px;
    text-align: center;
}
.notification-forget-password:hover { 
    color: #009;
}
.email-forget-password { 
    grid-area: email-forget-password;
    background-color: #007;
    padding: 10px;
    border-radius: 15px;
    border: thick double #006;
    border-width: 0.4em;
}
.email-forget-password:hover { 
    background-color: #006;
    border: thick double #009;
    border-width: 0.4em;
}
.submit-forget-password { 
    grid-area: submit-forget-password; 
}
.submit-forget-password-form {
    background-color: #f90;
    height: 50px;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 25px;
    text-align: center;
    color: #005;
    border: thick double #fc6;
    border-width: 0.2em;
    border-radius: 50px;
    transition: 0.2s;
    overflow: hidden;
}
.submit-forget-password-form:hover {
    background-color: #00c;
    color: #f90;
    border: thick double #006;
    border-width: 0.3em;
    cursor: pointer;
}
.back-forget-password { 
    grid-area: back-forget-password;
    background-color: #007;
    padding: 16px;
    font-size: 25px;
    text-align: center;
    color: #f90;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top: thick double #006;
    border-bottom: thick double #006;
    border-width: 0.4em;
    cursor: pointer;
}
.back-forget-password:hover {
    background-color: #006;
    border-top: thick double #009;
    border-bottom: thick double #007;
    border-width: 0.4em;
}