﻿h1 {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.25rem;
}

.auth-wrap {
    height: 100vh;
}

.auth-left {
    height: 100vh;
    background: url('../img/Odin_Sign-in.jpg') no-repeat center;
    background-size: cover;
    background-blend-mode: darken;
}

.auth-left-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

.auth-left-content img {
    margin-bottom: 20px;
}

.auth-logo {
    width: 25vw;
    max-width: 400px;
}

.auth-brand {
    max-width: 200px;
    margin-bottom: 40px;
}

.auth-kairos-icon {
    width: 340px;
}

.auth-left-top {
    display: flex;
    height: 50vh;
    justify-content: center;
    align-items: end;
}

.auth-left-bottom {
    display: flex;
    padding: 0 0 100px 0;
    justify-content: center;
    align-items: end;
}

.auth-right {
    background: #fff;
}

.auth-right-content {
    width: 100%;
    padding: 0 15%;
}

.auth-right-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 85vh;
    max-width: 600px;
    margin: 0 auto;
}

.auth-right-bottom {
    height: 15vh;
}

@media (max-width: 767px) {
    .auth-wrap {
        height: auto;
    }

    .auth-left {
        display: none;
    }

    .auth-right {
        height: 100vh;
        overflow-y: auto;
        display: flex;
        align-items: center;
    }
    
    .auth-right-content {
        margin-top: -80px;
    }

    .auth-left-top {
        display: none;
    }

    .auth-left-bottom {
        height: auto;
        min-height: 100px;
        padding: 5px 0;
        align-items: center;
    }

    .auth-right-top {
        height: auto;
        padding: 25px 0;
    }

    .auth-right-bottom {
        height: auto;
        padding: 25px 0;
    }

    .auth-right-content {
        padding: 0 5px;
    }
}

.auth-footer a {
    color: #777;
    text-decoration: none;
}

.auth-form .input-group .k-form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin: 0;
}

.auth-form .input-group .input-group-text {
    background: none;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--neutral-color-40);
    padding-right: .25rem;
}

.auth-form .ibm-icon {
    width: 20px;
    height: 20px;
}

.auth-form .input-group:hover {
    background-color: var(--neutral-color-10);
}

.auth-form .TogglePasswordView {
    cursor: pointer;
}