﻿
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;
}

.provider-login-container__left-section {
    width: 50%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
/*    background-color: #00355f0d;*/
}

.provider-login-container__right-section {
    width: 50%;
    background: #00355F;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-title {
    font-size: 2rem;
}

.subtitle {
    font-size: 1rem;
}

.provider-features {
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 2.5rem;
    color: #ffffff;
    width: 50%;
}

.provider-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%;
    }

    .provider-login-container__left-section {
        width: 100%;
    }

    .provider-login-container__right-section {
        width: 100%;
        min-height: auto;
    }

    .provider-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;
    }

    .provider-features {
        width: 100%;
    }
}

@media screen and (max-width:600px) {

    .provider-feature-container {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width:425px) {
    .form-container {
        width: 70%;
    }
}
