﻿.app-container {
    margin: 0px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    background-color: white;
}

.left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    font-family: Montserrat, sans-serif;
    padding: 50px;
    box-sizing: border-box;
}

.right {
    width: 800px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-flow: column;
    padding: 100px;
    box-sizing: border-box;
}

.auth-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
}


.auth-subtitle {
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 600;
    padding-bottom: 2rem;
    padding-top: 1rem;
}

.left-content {
    width: 500px;
    max-width: 100%;
}

.form-row {
    margin: 0px;
    padding-bottom: 1.5rem;    
    display: block;
}

.form-row input {
    width: 100%;
    height: 46px;
    border: solid 1px #e5e7eb;
    outline: none;
    font-size: 14px;
    padding: 0px 16px;
    border-radius: 4px;
    box-sizing: border-box;
    transition: all .3s;
}

.form-row input:hover {
    border: solid 1px black;
}

.form-row .error,
.form-row label {
    font-family: Montserrat, ui-serif;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 600;
    color: rgb(107 114 128);
    padding-bottom: 0.5rem;
    display: block;
    margin:0px;
}

.form-row .error {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: red;
    opacity: 0;
}

.submit-button {
    border: 0px;
    outline: none;
    height: 46px;
    border-radius: 9999px;
    width: 100%;
    font-family: Montserrat, ui-serif;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    font-size: 14px;
    margin-top: 32px;
    transition: all .3s;
}

.checkbox-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-top: 5px;
}

.my-link {
    font-family: Montserrat, ui-serif;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s;
    cursor: pointer;
    font-weight: 400;
}

.company-logo {
    width: 500px;
    max-width: 100%;
    opacity: .8;
}

.logo-subtitle {
    font-family: Montserrat, ui-serif;
    color: white;
    padding-top: 2rem;
    font-size: 18px;
    text-align: right;
}


/* CHECKBOX */

/* Customize the label (the container) */
.my-checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 20px;
    display: flex;
    align-items: center;
    margin:0px;
}

    /* Hide the browser's default checkbox */
    .my-checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.my-checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 4px;
    background-color: #eee;
    transition: all .3s;
}

/* On mouse-over, add a grey background color */
.my-checkbox-container:hover input ~ .my-checkbox-checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */


/* Create the checkmark/indicator (hidden when not checked) */
.my-checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.my-checkbox-container input:checked ~ .my-checkbox-checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.my-checkbox-container .my-checkbox-checkmark:after {
    left: 7px;
    top: 4px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.links {
    padding-top: 2rem;
    text-align: center;
    color: gray;
    font-size: 14px;
    display: flex;
    flex-flow: column;
    gap: 5px;
}

    .links .my-link {
        width: 145px;
        padding-left: 5px;
        text-align: left;
        max-width: 100%;
        display: inline-block;
        font-size: 14px;
    }

.link-label {
    max-width: 100%;
    width: 170px;
    text-align: right;
    display: inline-block;
    font-size:14px;
}

.text-right {
    text-align: right;
}

.login-error-holder {
    padding: 0px;
    padding-top: 2rem;
}

.login-error-holder p{
    color:red;
}

.default-button {
    background: transparent !important;
    color: black !important;
    font-weight: 600 !important;
}

.success-screen-image{
    width: 90px;
    margin-bottom: 2rem;
}

.app-container.logout {
    height: 100vh !important;
}

.app-container.logout .modal-dialog {
    display: flex;
    justify-content: center;
}

.app-container.logout .left .content {
    width: 500px;
}

.modal-header-custom div {
    color: var(--primaryhover);
}

.logout-title {
    color: #000;
}

.btn {
    border-radius: 999px;
}

.dataTables_wrapper:nth-of-type(2) .col-sm-12 {
    overflow-x: auto;
}

.modal-header-custom div {
    color: #000;
}

@media screen and (max-width: 1024px) {
    .right {
        display: none;
    }

    .left {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .left {
        padding: 30px;
    }
}

@media screen and (max-width: 385px) {
    .links {
        gap: 15px;
    }

    .links .my-link,
    .link-label {
        width: 100%;
        text-align: center;
    }
}