﻿* {
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

    *::before,
    *::after {
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
    }

html,
body {
    position: relative;
    width: 100%;
    height: 100%;
}

.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}


.app {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../img/gradient-bg.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-toggle-password .bx.auto-fill-bg {
    color: var(--primary)!important;
}

.btn-toggle-password:hover .bx {
    color: var(--primary);
}
.forg-pwd-container {
    position: relative;
    flex: 0 0 460px;
    z-index: 1001;
}

.main-container-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.dark-theme .main-container-bg {
    opacity: 0.1;
}

.main-container-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(45deg, rgba(115, 103, 240, .6), rgb(0 0 0));
    z-index: 11;
}

.forg-pwd-container .card {
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 30px;
    margin: 0;
}

.forg-pwd-container .card .card-body {
    z-index: 20;
}

.forg-pwd-container .card-title {
    font-size: 1.5rem;
}

.forg-pwd-container .card-subtitle {
    position: relative;
    font-weight: 400;
}

.forg-pwd-container label {
    font-weight: 500;
}

.forg-pwd-container .btn-forg-pwd {
    position: relative; 
    font-size: 1rem;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    font-weight: 500;
}

.forg-pwd-container input::placeholder {
    color: var(--default-color);
    opacity: 0.8;
}

.forg-pwd-container input:focus {
    border: 2px solid var(--primary);
}

.forg-pwd-form {
    position: relative;
    padding-top: 1.5rem;
}

.particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-container .logo {
    position: relative;
    height: 26px;
    object-fit: contain;
}

.forg-pwd-card .form-control {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    font-size: 14px;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out; 
}

.forg-pwd-card .form-control:focus {
    box-shadow: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #7367f0;
}

.forg-pwd-card .form-label {
    position: relative;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.app-logo-forg-pwd img {
    width: 200px;
    object-fit: cover;
}
 

@media(max-width: 600px) {
    .forg-pwd-container {
        flex: 1;
        margin: 0 1rem;
    }
}

#lblError .alert{
    border-color:var(--danger);
}

.version-text {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 400;
    opacity: 0.85;
    text-align: right;
}



a.link.pwd-link{
    transition: all 200ms ease-in-out;
}

a.link.pwd-link:hover {
    color: #8f85ef;
    text-decoration:underline 2px !important;
}