@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
    height: 100%;
}
body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size: .9375rem;
    color: #3A3939;
    background-color: #F5F6EE;
    height: 100%;
    /* min-height: 100%;  */
    /* overflow-x: hidden; */
}
/* login page */
.new-main-wrapper{
    display: flex;
    height: 100%;
}

.bg-image-section{
    width: 50%;
    height: 100%;
    background-image: url('../tssimages/family-near-city-fountain-mother-with-gaughter-playing-with-water\ 1.png');
    background-size: cover;
    background-position: center;
}

.form-section{
    /* display: grid;
    place-content: center; */
    width: 50%;
}

form{
    margin-top: 45%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* For tablets and smaller screens */
@media (min-width: 1250px) {
    form {
        margin-top: 25%;
    }
}



.site-logo-container{
    padding: 20px 10px;
    display: flex;
    justify-content:flex-end;
}

.site-logo-container > img{
    width: 45%;
}

.login-form-section{
    
    width: 70%;
    height: 70%;
    margin: 15px auto;
    padding: 10px 5px 5px 5px;
}

.login-form-header{
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1rem;
    font-size: 1.25rem;
    text-align: center;
}

.login-forms{
    margin-top: 25px;
    height: 90%;
}

.auth-input-fields{
    width: 90%;
    margin: 20px auto;
    position: relative;
}


.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper > input:focus {
    border: none;
}

.input-wrapper > input {
    width: 100%;
    height: 2.5rem;
    border: 1px solid #3A3939;
    border-radius: 4px;
    padding: 0.75rem 0.5rem;
    box-sizing: border-box;
    font-size: 1rem;
}

.input-wrapper > label {
    position: absolute;
    top: 0rem;
    left: 0.2rem;
    font-size: 0.75rem;
    color: #3A3939;
    transition: 0.2s ease all;
    pointer-events: none; 
    /* background: white; */
    padding: 0 0.25rem;
}

.login-btn-container{
    width: 50%;
    height: 50px;
    margin: 10px auto;
    background-color: #335F3B;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-btn{
    text-transform: uppercase;
    border: 1px solid #3A3939;
    background-color: white;
    width: 70%;
    height: 70%;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
}

.forgot-password-style{
    color: black;
    font-size: 0.75rem;
}

.forgot-password-style:hover{
    color: #335F3B;
    text-decoration: none;
}

.auth-input-fields input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #335F3B;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    margin-right: 8px;
}

.auth-input-fields input[type="radio"]:checked {
    background-color: #335F3B;
}

.auth-input-fields input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.auth-input-fields label.form-check-label {
    display: inline-block;
    vertical-align: middle;
    color: #3A3939;
    font-size: 0.875rem;
    cursor: pointer;
}
