/*=========================================
            AVATAR LOGIN CSS
=========================================*/
:root {
    /* Primary */
    --primary: #a86349;
    --primary-dark: #5B21B6;
    --primary-light: color-mix(in srgb, var(--primary) 80%, transparent);
    /* Secondary */
    --secondary: #2563EB;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
}
/*==========================
        RESET
==========================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none !important;
}

body {
    font-family: 'Segoe UI',sans-serif;
    color: var(--text-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.logo {
    width: 45%;
    height: auto;
}

#loginForm .form-control:focus {
    border-color: #dee2e6 !important;
    box-shadow: none !important;
}

/*=================================================================================================*/
.half, .half .container > .row {
    height: 100vh;
    min-height: 500px;
}

@media (max-width: 991.98px) {
    .half .bg {
        height: 200px;
    }
}

.half .contents {
    background: #f6f7fc;
}

.half .contents, .half .bg {
    width: 50%;
}

@media (max-width: 1199.98px) {
    .half .contents, .half .bg {
        width: 100%;
    }
}

.half .contents .form-control, .half .bg .form-control {
    height: 46px;
    background: #fff;
}

.half .bg {
    background-size: cover;
    background-position: center;
}

.half a {
    color: #888;
    text-decoration: underline;
}

.half .forgot-pass {
    position: relative;
    top: 2px;
    font-size: 14px;
}
.bg{
    object-fit: cover;
    object-position:center;
}

.fw-500{
    font-weight: 500 !important; 
}

.fs-14{
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.form-check-input:focus {
    border-color: var(--primary) !important;
    box-shadow: none !important;
}
.text-primary{
    color: var(--primary) !important;
}