@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%;
}

button,
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none; /* Remove default rounded corners */
  appearance: none; /* Remove default rounded corners */
  border-radius: 0; /* Ensure no border radius */
}

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;
}

.signup-content {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
}

.signup-header{
    margin-top: 40px;
    font-size: 60px;
    margin-bottom: 5px;
    font-family: 'Poppins-Medium', 'sans-serif';
    color: #14453d;
}

.signup-form{
    margin-bottom: 35px;
}

.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 */
}

.signupWrapper{
    display: flex;
    justify-content: space-between;
}

.signUp-Logo-alignment{
    align-items: center;
    display: flex;
}

.layout, .layout-google{
    display: flex;
    justify-content: space-evenly;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 1px solid #14453d;
    background-color: white;
    margin-bottom: 10px;
    align-items: center;
    width: 48%;
}

.layout a {
    text-decoration: none;
    color: #14453d;
    font-size: 15.5px;
    font-family: "Poppins-Light", "sans-serif";
}

.layout-google a {
    text-decoration: none;
    color: #14453d;
    font-size: 15.5px;
    font-family: "Poppins-Light", "sans-serif";
}

.fb-icon{
    position: relative;
    max-width: 12px;
}

.google-icon{
    position: relative;
    max-width: 30px;
}

/* 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 3px;
    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';
}

.label-username{
    margin-right: 335px;
    letter-spacing: 2px;
    font-family: 'Montserrat-Regular', 'sans-serif';
    color: #14453d;
}

.label-password{
    /* margin-right: 310px; */
    letter-spacing: 2px;
    font-family: 'Montserrat-Regular', 'sans-serif';
    color: #14453d;
    display: flex;
    justify-content: start;
    padding-left: 3px;
}

.label-firstname {
    margin-right: 325px;
    letter-spacing: 2px;
    font-family: 'Montserrat-Regular', 'sans-serif';
    color: #14453d;
}

.label-lastname {
    margin-right: 330px;
    letter-spacing: 2px;
    font-family: 'Montserrat-Regular', 'sans-serif';
    color: #14453d;
}

.label-email {
    margin-right: 382px;
    letter-spacing: 2px;
    font-family: 'Montserrat-Regular', 'sans-serif';
    color: #14453d;
}

.label-phone {
    /* margin-right: 352px; */
    letter-spacing: 2px;
    font-family: 'Montserrat-Regular', 'sans-serif';
    color: #14453d;
    display: flex;
    justify-content: start;
    padding-left: 3px;
}

#username, #password, #firstname, #lastname, #email, #phone{
    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: 15px;
}

/* Tooltip styles */
.tooltip-content {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    z-index: 10;
}

/* Adjust the position of the tooltip based on the icon */
#password-info-icon, #phone-info-icon {
    position: relative;
}

#password-tooltip, #phone-tooltip {
    position: absolute;
    width: 428px;
    font-size: 12px;
    margin-top: 25px;
    margin-left: -2px;
}

.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;
    -webkit-border-radius:0; 
    border-radius: 0;
    cursor: pointer;
    width: 50%;
    font-family: 'Montserrat-Bold', 'sans-serif';
}


#phone{
    margin-bottom: 20px;
}


.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) {
    .signup-header {
        font-size: 33px;
    }

    #username, #password, #firstname, #lastname, #email, #phone {
        width: 300px;
    }

    .label-username {
        margin-right: 229px;
    }

    /* .label-password {
        margin-right: 204px;
    } */

    .label-firstname {
        margin-right: 219px;
    }

    .label-lastname {
        margin-right: 227px;
    }

    .label-email {
        margin-right: 278px;
    }

    /* .label-phone {
        margin-right: 245px;
    } */

    .alert-content {
        margin: 10% 5%;
        width: 75%;
    }

    #password-tooltip, #phone-tooltip {
        width: 326px;
    }

    .layout a {
        font-size: 12px;
    }
    
    .layout-google a {
        font-size: 12px;
    }

    .divider hr {
        width: 145px;
    }

    .fb-icon {
        max-width: 12px;
    }

    .google-icon {
        max-width: 25px;
    }
}
