@font-face {
    font-family: 'Poppins-Medium';
    src: url('../font/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 300 1000;
    font-stretch: 25% 151%;
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../font/Montserrat/static/Montserrat-Bold.ttf') format('truetype');
    font-weight: 500 1000;
    font-stretch: 25% 151%;
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../font/Montserrat/static/Montserrat-Regular.ttf') format('truetype');
    font-weight: 100 1000;
    font-stretch: 25% 151%;
}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #3aada9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    /* width: 500px;
    height: 100vh; */
    display: grid;
    grid-gap: 7rem;
    padding: 0 2rem;
}

.forgot-password-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.forgot-password-header{
    /* margin-top: 80px; */
    font-size: 40px;
    margin-bottom: 5px;
    font-family: 'Poppins-Medium', 'sans-serif';
    color: #14453d;
}

.form-container {
    display: flex; /* Use flexbox */
    justify-content: space-between; /* Distribute space between forms */
    align-items: center; /* Center buttons vertically */
    margin-top: 20px; /* Add space above the buttons */
}

.label-email {
    margin-right: 380px;
    letter-spacing: 2px;
    font-family: 'Montserrat-Regular', sans-serif;
}

#email{
    width: 400px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #14453d;
    margin-top: 8px;
    margin-bottom: 7px;
    font-size: 20px;
    font-family: 'Montserrat-Regular', sans-serif;
}

.submit-button{
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 60px;
    padding-right: 60px;
    color: white;
    background-color: #14453d;
    border: none;
    cursor: pointer;
    margin-top: 25px;
    font-family: 'Montserrat-Bold', sans-serif;
}

.alert-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.fa-exclamation-circle {
    margin-top: 5px;
    margin-right: 15px;
    color: #ce8500;
    font-size: 40px;
}

.fa-check-circle {
    margin-top: 5px;
    margin-right: 15px;
    margin-left: 10px;
    color: #00b469;
    font-size: 40px;
}

.alert-content {
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-align: center;
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
}

.alertMessageSection {
    display: flex;
}

.closeAlert {
    color: #aaa;
    float: right;
    font-size: 35px;
    font-weight: bold;
    margin-right: 5px;
    margin-top: 5px;
}

.closeAlert:hover,
.closeAlert:focus {
    color: #14453d;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .forgot-password-header {
        font-size: 30px;
    }

    .label-email {
        margin-right: 280px;
    }

    #email {
        width: 300px;
    }

    .alert-content {
        margin: 10% 5%;
        width: 75%;
    }
}