﻿
input {
    font-size: 13px;
}

input::-webkit-input-placeholder {
    color: rgba(0,0,0,.3);
    opacity: 1 !important; /* for older chrome versions. may no longer apply. */
}

    input:-moz-placeholder { /* Firefox 18- */
        color: rgba(0,0,0,.3);
        opacity: 1 !important;
    }

    input::-moz-placeholder { /* Firefox 19+ */
        color: rgba(0,0,0,.3);
        opacity: 1 !important;
    }

    input:-ms-input-placeholder {
        color: rgba(0,0,0,.3);
    }

.card{
    border-radius:5px;
}
.card h5{
    font-weight: bold;
    font-size: 24px;
}
.card .d-flex label, .card .d-flex a{
    font-size: 15px;
}

#login-container {
    height: 100vh;
    display: flex;
    width: 100%;
}
.login-container__left-section {
    width: 50%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /*    background-color: #00355f0d;*/
    background-image: url('../images/homebackground.jpg');
/*    background-size: cover;*/
    background-repeat: no-repeat
}

.login-container__right-section {
    width: 50%;
    background: #00355F;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-title {
    font-size: 2rem;
    color: #ffffff;
}

.subtitle {
    font-size: 1rem;
    color: #ffffff;
}

.features {
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 2.5rem;
    color: #ffffff;
    width: 50%;
}

.feature-container {
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
}

.form-container {
    width: 50%;
}

@media screen and (max-width:1024px) {
    /* Add responsive styles here if needed */

    #login-container {
        min-height: auto;
        width: 100%;
    }

    .login-container__left-section {
        width: 100%;
/*        height: 100vh;*/
    }

    .login-container__right-section {
        width: 100%;
         min-height: auto;
    }
    .features {
        width: 50%;
    }
}
    @media screen and (max-width:768px) {
        #login-container {
            display: flex;
            flex-direction: column;
            min-height:100vh;
        }
        .welcome-title {
            font-size: 1.25rem;
        }

        .subtitle {
            font-size: .875rem;
        }
        .features {
            width: 100%;
        }
    }
    @media screen and (max-width:600px) {

        .feature-container {
            display: flex;
            flex-direction: column;
        }

        
    }

    @media screen and (max-width:425px) {
        

        .form-container {
            width: 70%;
        }
    }
