﻿﻿.main-login-div {
    height: 100vh;
    display: grid;
    grid-template-rows: 60px 1fr;
}

.login-header {
    padding: 10px;
    background-color: #fff !important;
}

content {
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}

.login-page-container {
    /* height: calc(100vh - 80px); */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-page-container {
    /* height: calc(100vh - 80px); */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .login-page-container.hasUploadWrapper {
        height: auto;
    }

.login-form {
    padding: 10px;
    width: 100%;
    max-width: 450px;
    padding: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.login-page-container.hasUploadWrapper .login-form {
    height: 100%;
    margin-bottom: 20px;
}

.login-header {
    margin-bottom: 40px;
    /*margin-top: 40px;*/
}

.login-header-h3 {
    font-size: 22px;
    text-align: center;
}

.login-form-group-input {
    padding: 10px;
    width: 100%;
    border: 1px solid #d5d5d5;
    background: #fff;
    font-size: 14px;
    outline: none;
    border-radius: 10px; 
}

.login-form-group {
    margin-bottom: 18px;
    /*display: grid;*/
    grid-template-rows: 15px 1fr;
    align-items: center;
    gap: 10px;
}

    .login-form-group label {
        font-size: 14px;
        /*color: #696969;*/
        padding-left: 6px;
    }


.forgot-password-wrapper {
    text-align: right;
}

.forgot-password-a {
    text-decoration: none;
    color: #FFB606;
}

.forgot-password-small {
    font-size: 14px;
    color: #000;
    transition: all .5s ease;
}

.login-btn-wrapper {
    margin-top: 20px;
}

    .login-btn-wrapper button {
        background: #FFB606;
        color: #FFF;
        width: 100%;
        border: none;
        font-size: 16px;
        font-weight: 600;
        transition: all .5s ease;
        cursor: pointer;
        position: relative;
        padding: 10px;
        height: 45px;
         border-radius: 10px; 
    }

.login-form-group-input:focus {
    background: #FFF;
    border: 1px solid #FFB606;
}

.login-btn-wrapper .fb-login {
    background: #0f8dd2;
    margin-top: 10px;
}

input[name=ShowPassword] {
    margin-right: 10px;
    transform: scale(1.5);
    accent-color: #FFB606;
}

.login-form-group-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.login-form-group-p {
    font-size: 14px;
}


.login-create-account {
    display: flex;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.login-create-account span {
    font-size: 14px;
}

.login-create-account a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #FFB606;
}

.login-form-group .dropdown-container-input {
    padding: 10px;
}

.login-form-group .dropdown-container {
    background: #FFF;
}

    .login-form-group .dropdown-container:focus-within {
        background: #FFF;
    }


.register-file-upload-wrapper {
    height: 150px;
    border: 1px solid #d5d5d5;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .register-file-upload-wrapper .removeFileBtn {
        position: absolute;
        right: 0;
        top: 0;
        font-size: 16px;
        font-weight: 600;
        font-style: normal;
        padding: 10px;
    }

    .register-file-upload-wrapper p {
        font-size: 14px;
        color: #757575;
    }

    .register-file-upload-wrapper img[src=""] {
        display: none;
    }

    .register-file-upload-wrapper img {
        width: 100%;
    }


.login-btn-wrapper button:disabled {
    opacity: .7;
    pointer-events: none;
}


.no-license-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

    .no-license-container small {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }


        .no-license-container small:nth-child(2) a {
            text-decoration: none;
            background: var(--AKONINI_GOLD);
            padding: 10px;
            border-radius: 5px;
            width: 100%;
            text-align: center;
            font-weight: 600;
        }

.main-login-div {
    height: 100vh;
    display: grid;
    grid-template-rows: 60px 1fr;
}


.dropdown-container-login-icon {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease-out;
}

.dropdown-container-login {
    display: grid;
    grid-template-columns: 1fr 40px;
    position: relative;
    border: 1px solid #d5d5d5;
    background: #FFF;
    width: 100%;
    /* border-radius: 30px; */
}

    .dropdown-container-login .dropdownUL {
        list-style-type: none;
        background: #FFF;
        position: absolute;
        width: 100%;
        z-index: 999;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
        max-height: 180px;
        overflow-y: scroll;
        top: 100%;
    }

.dropdown-container-input-login {
    background: none;
    border: none;
    width: 100%;
    outline: none;
    padding: 8px;
    color: #222;
    font-size: 14px;
}


.login-form-group .dropdown-container-input-login {
    padding: 10px;
}

.login-form-group .dropdown-container-login {
    background: #fff;
    border-radius: 10px;
}

.dropdown-container-login-icon svg {
    height: 15px;
    fill: #222;
}




.registration-dropdown-container {
    display: grid;
    grid-template-columns: 1fr 40px;
    position: relative;
    border: 1px groove #ccc;
    background: #FFF;
    border-radius: 10px;
    width: 100%;
}

    .registration-dropdown-container input {
        padding: 10px;
        font-size: 14px;
    }

    .registration-dropdown-container .dropdownUL {
        list-style-type: none;
        background: #FFF;
        position: absolute;
        width: 100%;
        z-index: 999;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
        max-height: 180px;
        overflow-y: scroll;
        top: 105%;
    }

.dropdown-container-login {
}

    .dropdown-container-login:focus-within {
        background: #fff;
        border: 1px solid #FFB606;
    }

.choose-account-type-cont {
    width: 100%;
    list-style-type: none;
}

    .choose-account-type-cont li {
        padding: 10px;
        display: flex;
        justify-content: center;
        border-bottom: 1px solid #d5d5d5;
    }

        .choose-account-type-cont li a {
            text-decoration: none;
        }

        .choose-account-type-cont li:hover {
            background: #d5d5d5;
        }

.login-form-group-checkbox input {
    margin-right: 10px;
    transform: scale(1.5);
    accent-color: #FFB606;
}


.login-btn-wrapper .fb-login {
    background: #0f8dd2;
    margin-top: 10px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    height: 45px;
    font-weight: 600;
}

.social-login-btn-wrapper {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

    .social-login-btn-wrapper .social-login-btn {
        background: #FFF;
        width: 100%;
        border: none;
        font-size: 16px;
        font-weight: 600;
        transition: all .5s ease;
        cursor: pointer;
        position: relative;
        padding: 10px;
        height: 45px;
        border-radius: 10px;
        border: 1px solid #d5d5d5;
        display: flex;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
    }
    .social-login-btn-wrapper button img {
        height: 25px;
        width: 25px;
    }
    .social-login-btn-wrapper button span {
        display: flex;
    }


.login-main-header {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.login-main-header img {
    width: 30px;
    height: 30px;
}

.company-logo-container {
    display: none;
}

.i-agree-wrapper {
    margin-top: 20px;
    /*padding-top: 55px;*/
    width: 100%;
    height: 55px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    align-items: center;
    border-top: 1px solid #DCDCDC;
}

    .i-agree-wrapper input[type="checkbox"] {
        height: 15px;
        margin-bottom: 1px;
    }

    .i-agree-wrapper span {
        font-size: 13px;
        color: #000;
        font-weight: 600;
        margin-bottom: -1px;
    }

/* The container */
.custom-checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .custom-checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: -5px;
    left: 10px;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.custom-checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.account-creation-note {
    display: block;
    margin-top: 10px;
    text-align: center;
}

.verification-msg-cont {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 10px;
    margin-bottom: 15px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.verification-msg-cont i {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFB606;
}
.verification-msg-cont svg {
    fill: #fff;
    height: 18px;
}
.verification-msg {
    line-height: 15px;
    padding: 5px 0;
}

.verification-msg p {
    font-weight: 600;
    font-size: 14px;
}
.verification-msg small {
    font-size: 12px;
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #ccc;
    }

    .divider:not(:empty)::before {
        margin-right: .75em;
    }

    .divider:not(:empty)::after {
        margin-left: .75em;
    }

    .divider span {
        color: #888;
        font-weight: bold;
    }

@media screen and (max-width: 767px) {
    .login-form {
        box-shadow: none;
    }
} 
