@font-face {
    font-family: 'Poppins-Light';
    src: url('../font/Poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300 1000;
    font-stretch: 25% 151%;
}

@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;
}
.container {
    display: grid;
    grid-gap: 7rem;
    padding: 0 2rem;
}

.login-content {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
}

.login-header{
    font-family: 'Poppins-Medium', 'sans-serif';
    color: #14453d;
    margin-top: 45px;
    font-size: 60px;
    margin-bottom: 45px;
}

.layout, .layout-google{
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #14453d;
    background-color: white;
    margin-bottom: 40px;
    align-items: center;
    width: 395px;
}

.layout a {
    text-decoration: none;
    color: #14453d;
    font-size: 20px;
    font-family: "Poppins-Light", "sans-serif";
}

.layout-google a {
    text-decoration: none;
    color: #14453d;
    font-size: 20px;
    font-family: "Poppins-Light", "sans-serif";
    padding-right: 25px;
    padding-left: 20px;
}

.fb-icon{
    position: absolute;
    max-width: 15px;
    margin-top: -15px;
    margin-left: -70px;
}

.google-icon{
    position: absolute;
    max-width: 35px;
    margin-left: -325px;
}

/* CSS for the divider */
.divider {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Align items vertically center */
    justify-content: center; /* Center items horizontally */
    margin: 10px 0; /* Add some margin top and bottom */
    color: #14453d;
}

.divider hr {
    flex: 1;
    border: none;
    border-top: 1px solid #14453d;
    margin: 0 10px;
    width: 170px;
    color: #14453d;
}

/* Style the <p> element */
.divider p {
    margin: 0; /* Remove any default margin */
    padding: 0 10px; /* Add horizontal padding to give spacing between the text and the lines */
    color: #14453d;
    font-family: 'Montserrat-Regular', 'sans-serif';
}

.login-form{
    margin-bottom: 35px;
}

.label-email{
    font-family: 'Montserrat-Regular', 'sans-serif';
    color: #14453d;
    margin-right: 330px;
    letter-spacing: 2px;
}

.passwordWrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 2px;
}

.label-password{
    font-family: 'Montserrat-Regular', 'sans-serif';
    color: #14453d;
    /* margin-right: 160px; */
    letter-spacing: 2px;
}

#forgotPasswordText {
    color: #14453d;
}

#username_email, #password{
    width: 350px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #14453d;
    margin-top: 8px;
    margin-bottom: 17px;
    font-size: 20px;
}

.buttonContainer{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.submit-button{
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: white;
    background-color: #14453d;
    border: none;
    cursor: pointer;
    width: 50%;
    font-family: 'Montserrat-Bold', 'sans-serif';
}

.signup{
    margin-left: 5px;
}

.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 */
}


.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;
}

.termAndPolicy{
    color: #14453d;
    font-family: 'Montserrat-Regular', 'sans-serif';
    font-size: 12px;
    letter-spacing: 1px;
}

@media (max-width: 1000px) {
    .fb-icon {
        margin-left: -55px;
    }

    .google-icon {
        margin-left: -290px;
    }

    .divider hr {
        width: 150px;
    }

    .label-email {
        margin-right: 300px;
    }

    .passwordWrapper{
        padding-right: 5px;
    }

    #username_email, #password {
        width: 320px;
    }

    .layout, .layout-google {
        width: 363px;
    }

    .alert-content {
        margin: 10% 5%;
        width: 75%;
    }
}
