@import 'setup';

/* -------------------------- Login Panel -------------------------- */
.loginWrapper {
    background-color: $white;
    min-height: 100%;

    #alw-login {
        margin: 0 auto;
        width: 100%;
        padding-top: 15%;
        padding-bottom: 20px;
        
        .login-section {
            margin: 0 auto;
            max-width: 360px;
            width: 90%;
        }
        
        #login-logo {
          max-height: 360px;
          max-width: 360px;
        }

        .login-button {
            width: 200px;
            margin-top: 15px;
        }

        #password_form {

            input.form-control {
                padding: 0 10px;
            }

        }

    }

}

.auth0-login {
    .full-page {
        align-items: center;
        background-color: $auth0-background;
        display: flex;
        font-family: 'Rubik', sans-serif;
        height: 100%;
        justify-content: center;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .main-box {
        align-items: center;
        bottom: 0;
        display: flex;
        justify-content: center;
        position: fixed;
        top: 0;
    }
    .login-row {
        align-items: center;
        display: flex;
        flex-direction: column;
        padding: 15px;
    }
    .footer {
        display: flex;
        justify-content: center;
    }
    .header {
        align-items: center;
        border-radius: 5px 5px 0 0 !important;
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    .tab {
        display: flex;
        flex-direction: column;
        max-width: 370px;
        width: -webkit-calc(100vw - 20px);
        width: calc(100vw - 20px);
    }
    .form-group {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .form-control {
        margin: 0 0 20px 0;
        min-width: auto;
    }
    .grey-header {
        background: $auth0-grey-light;
        border-radius: 3px 3px 0 0 !important;
        text-align: center;
    }
    .white-body {
        background-color: $white;
        padding-bottom: 30px;
        padding-top: 30px;
    }
    .orange-footer {
        border-radius: 3px !important;
        background-color: $fox;
    }
    .orange-btn {
        border: 0 none;
        color: white;
        background-color: $fox;
        padding-bottom: 30px;
    }
    .orange-btn:focus, .orange-btn:hover, .orange-btn:target, .orange-btn:active {
        background-color: $fox;
        border: 0 none;
        box-shadow: none !important;
        outline: none;
        color: white;
    }
    .btn-title {
        color: $white;
        font-weight: $font-weight-bold;
    }
    .btn {
        cursor: pointer;
    }
    .header-icon {
        height: 50px;
        width: auto;
    }
    .auth0-login-form {
        margin-top: 25px;
    }
    .alert {
        border-left: none;
        border-right: none;
        color: $white;
        margin-bottom: 0;

        .alert-danger {
            background-color: $red-destroy;
            border-color: $red-destroy;
        }

        .alert-success {
            background-color: $turtle;
            border-color: $turtle;
        }
    }
    .back-button {
        background: white;
        border: 6px solid white;
        border-radius: 100px;
        box-sizing: content-box;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        height: 10px;
        line-height: 0;
        margin-right: auto;
        right: 14px;
        top: 14px;
        width: 10px;
    }
    .auth0-error-message {
        color: $timberwolf;
        font-size: 14px;
        font-weight: 500;
        margin-left: 10px;
        margin-right: 10px;
    }
}
