﻿:root {
    --blue: #017dc3;
    --blue-dark: #056297;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}

.w-400 {
    width: 400px;
}

.btn-primary {
    background-color: var(--blue);
}

.btn-bd-primary {
    font-weight: 600;
    color: var(--blue);
    border-color: var(--blue-dark)
}

    .btn-bd-primary:hover,
    .btn-bd-primary:active {
        background: var(--blue);
        color: #fff;
    }

body.auth {
    color: #3f4a53;
    /* background-image: url('https://www.usimprints.com/img/homepage-banner.png'); */
    padding: 0;
    background-color: #eee;
    height: auto;
    min-height: 100%;
    line-height: 1.42857143;
    position: realative;
}

body:after {
    content: "";
    background-image: url('../images/Portal_authLanding_1366.jpg');
    background-size: cover;
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.auth header {
    background: #017dc3;
}


.vertical-center {
    min-height: 100%;
    /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh;
    /* These two lines are counted as one :-)       */
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign-in {
    background: #e3f2fe;
    border-radius: none;
    box-shadow: 0px 0px 11px -2px rgba(0, 0, 0, 0.98);
}

.line-field {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    border-radius: 0;
    background: none;
    border: none;
    border-bottom: solid 2px #ccc;
}

    .line-field:focus {
        background-color: transparent;
        border-color: #80bdff;
        outline: 0;
        box-shadow: none;
    }

    .line-field.error {
        border-color: var(--danger);
    }

.p-20 {
    padding: 20px;
}

.m-v-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.m-t-20 {
    margin-top: 20px;
}

.m-t-40 {
    margin-top: 40px;
}

.error-message {
    color: #dc3545 !important;
}
