﻿body {
    background: url('/Content/main-banner.jpg') no-repeat center center fixed, url('https://newgrove.com/wp-content/uploads/2022/01/home-main-banner-resized-1300x866-1.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    color: white;
    margin: 0 !important;
}

#body {
    -ms-align-content: stretch;
    -ms-align-items: flex-start;
    -ms-flex-direction: column;
    -ms-flex-grow: 1;
    -ms-flex-wrap: nowrap;
    -ms-justify-content: center;
    align-content: stretch;
    align-items: flex-start;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-wrap: nowrap;
    justify-content: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
}

.box {
    min-width: 400px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    padding: 2rem;
    color: #edf2ff;
}

.form-control {
    -webkit-box-shadow: none;
    -webkit-transition: none;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    box-shadow: none;
    transition: none;
}

.form-control:focus {
    border-color: #3a4766;
    outline: 0;
}

#loginbutton, #resetPasswordButton, #gobackButton, #logoutbutton {
    -moz-border-radius: 3px;
    -moz-osx-font-smoothing: grayscale;
    -moz-transition: all 0.2s;
    -webkit-border-radius: 3px;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all 0.2s;
    background: linear-gradient(to bottom, #3a4766 0%, #2A3554 100%);
    border: 0;
    border-radius: 0.5rem;
    color: #FFF;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.2s;
    width: 100%;
}

h4.title {
    color: #ffffff;
}


.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
}

    .otp-input:focus {
        outline: none;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        border-color: #007bff;
    }


/**
    ============= Login
*/
.main-heading {
    font-size: 2rem;
    font-weight: bold;
}

.sub-text {
    font-size: 1.2rem;
}



.alert {
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
}

.browser-warning {
    background-color: #ffc107;
    color: #212529;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid #e0a800;
    position: sticky;
    width: 100%;
    min-height: 30px;
    z-index: 2;
}

/**
    =============== Input password reset
*/

ul.password-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.valid, invalid {
    display: flex; /* Use flexbox for icon and text alignment */
    align-items: center;
    gap: 5px; /* Space between icon and text */
}
.valid {
    color: #28a745; /* Strong green color */
}

.invalid {
    color: #dc3545; /* Strong red color */
}

@font-face {
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    src: url('./fontawesome-webfont.woff') format('woff');
}

.fa {
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
}

.fa-check:before {
    content: "\f00c"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

img.logo {
    width: 150px;
}

.toc {
    background: linear-gradient(to bottom, #3a4766 0%, #2A3554 100%);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    position: sticky;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

[v-cloak] {
    display: none;
}