@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: -1;
}

.container.h-100 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.user_card {
    width: 420px;
    background: rgba(91, 27, 128, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 20px rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    margin: 80px auto;
}

.brand_logo_container {
    position: absolute;
    height: 160px;
    width: 160px;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #250d33;
    padding: 5px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.2);
}

.brand_logo {
    width: 130px;
    height: auto;
    border-radius: 50%;
}

.form_container {
    margin-top: 80px;
}

.credencials label {
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.label-input {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group {
    margin-bottom: 20px !important;
}

.input-group-text {
    background: #fff !important;
    border: none !important;
    border-radius: 10px 0 0 10px !important;
    color: #5b1b80 !important;
    width: 45px;
    justify-content: center;
}

.form-control {
    border-radius: 0 10px 10px 0 !important;
    border: none !important;
    height: 48px !important;
    font-size: 1rem;
    padding-left: 15px;
}

.login_btn {
    width: 100%;
    background: #f2ea00 !important;
    color: #000 !important;
    font-weight: 800;
    height: 52px;
    border-radius: 10px !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: none !important;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(242, 234, 0, 0.3);
}

.login_btn:hover {
    background: #fffb00 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 234, 0, 0.5);
}

.login_btn:active {
    transform: translateY(0);
}

.custom-control-label {
    color: #fff !important;
    font-size: 0.9rem;
    cursor: pointer;
}

.links {
    margin-top: 25px;
}

.links label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
}

.links a {
    color: #f2ea00 !important;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.links a:hover {
    color: #fff !important;
    text-decoration: underline;
}

.avalon-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 12px 30px;
    text-align: center;
    font-size: 0.82rem;
    z-index: 10000;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.avalon-footer strong {
    color: #f1c40f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 480px) {
    .user_card {
        width: 90%;
        padding: 30px 20px;
    }
    .brand_logo_container {
        height: 130px;
        width: 130px;
        top: -65px;
    }
    .brand_logo {
        width: 100px;
    }
    .form_container {
        margin-top: 80px;
    }
}