.auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-card {
    box-shadow: var(--shadow-color-2);
    max-width: 400px;
    background-color: var(--white-color);
}

.brand-logo img {
    width: 35px;
}

.app-brand-text {
    color: var(--text-color);
    font-size: 22px;
}

.auth-title {
    color: var(--text-color-2);
    font-weight: 500;
}

.auth-des {
    color: var(--text-color);
}

.auth-card .card-body {
    padding: 32px;
}

.auth-submit-btn {
    background: var(--primary-color);
    color: #fff;
}

.auth-submit-btn:hover {
    color: #fff;
}

.auth-alter {
    color: var(--text-color);
}

.auth-alter a {
    color: var(--secondary-color) !important;
}

.small-text {
    font-size: 14px;
}

.divider {
    display: block;
    text-align: center;
    margin: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.divider .divider-text {
    position: relative;
    display: inline-block;
    font-size: 0.8rem;
    padding: 0rem 1rem;
}

.divider .divider-text:before,
.divider .divider-text:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100vw;
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.divider .divider-text:before {
    right: 100%;
}

.divider .divider-text:after {
    left: 100%;
}

.btn-label-facebook {
    color: #3b5998;
    border-color: transparent;
    background: #e0e4ef;
}

.btn-icon {
    border-color: transparent;
    padding: 0;
    width: calc(2.2546875rem + 2px);
    height: calc(2.2546875rem + 2px);
    display: inline-flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}

.btn-label-google-plus {
    color: #dd4b39;
    border-color: transparent;
    background: #fae2df;
}

.btn-label-twitter {
    color: #1da1f2;
    border-color: transparent;
    background: #dbf0fd;
}

.pass-input-eye {
    border: none;
    position: absolute;
    right: 3px;
    top: 1px;
    z-index: 6;
    padding: 7px 10px;
    cursor: pointer;
}

.pass-input-eye i {
    color: var(--text-color);
}

.auth-checked:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.auth-checked:focus {
    outline: 0;
    box-shadow: 0 0 0 1px rgba(115, 103, 240, .25);
}

.link-color {
    color: var(--secondary-color);
}