﻿html, body {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.bg-image {
    position: fixed;
    inset: 0;
    background: url('/img/cabin-3.jpg') center/cover no-repeat;
    filter: blur(8px) brightness(0.7);
    z-index: 0;
    background-position-y: 48%;
    background-size: cover;
}

.login-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.field-comb {
    margin-bottom: 0.2rem !important;
}

.login-box {
    background-color: rgb(255 255 255 / 57%);
}
/*.login-box {
    background-color: rgba(255, 255, 255, 0.8);  
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    color: #000;  
}
*/
.auth-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #333;
}

.w-30 {
    width: 30% !important;
}

.h500-px {
    height: 500px !important;
}

h3 {
    font-family: 'Cabin', sans-serif !important;
}

.auth-subtitle {
    font-size: 0.9rem;
    text-align: center;
    color: #666;
    margin-bottom: 1.75rem;
}

.form-control {
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.login-container form {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.login-form_ {
    gap: 1px !important;
}


label {
    font-family: 'Cabin', sans-serif !important;
}

/*.login-container form label {
    color: #5d5959
}*/

.login-container form .mb-4 a, .login-container form .mt-4 span {
    color: #5d5959 !important;
}

    .login-container form .mb-4 a:hover {
        color: #1668e3 !important;
    }

.btn-login {
    background-color: #1668e3;
    border-color: #1668e3;
    color: #fff;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: background-color 0.3s ease;
}

    .btn-login:hover {
        background-color: var(--button-color);
        border-color: var(--button-color);
    }

.link-green {
    color: #1668e3;
    font-weight: 500;
    text-decoration: none;
}

    .link-green:hover {
        text-decoration: underline;
    }

.link-small {
    font-size: 0.85rem;
    color: #888;
    text-decoration: none;
}

    .link-small:hover {
        color: #1668e3;
    }
