:root {
    --primary-blue: #fd2a2a;
    --bg-dark: #ffffff;
    --card-bg: #800000 ;
    --input-bg: rgba(128, 128, 128, 0.200);
    --text-muted: #4B4B4B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: rgb(0, 0, 0);
    height: 100vh;
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100%;
    width: 100%;
}

/* --- Floating Nav --- */
.floating-nav {
    position: absolute;
    top: 30px;
    left: 73%;
    transform: translateX(-50%);
    align-items: center;
    align-content: center;
    z-index: 100;
    display: flex;
    gap: 100px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding-right: 80px;
    padding-left: 80px;
    padding-bottom: 30px;
    padding-top: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.icon-floatingnav {
    width: 24px;
    height: 24px;
    margin-right: 1px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
    opacity: 0.8;
}

.nav-link:hover {
    color: #ffffff;
    font-weight: 800;
    opacity: 1;
}

/* --- Left Branding Side --- */
.login-left {
    flex: 1;
    background: radial-gradient(circle at center, #a93737  0%, #800000  100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-wrapper {
    text-align: center;
    z-index: 5;
}

.logo-box-large {
    width: 180px;
    height: 180px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.brand-img { width: 80%; height: auto; }

.brand-title h1 { 
    font-size: 2.2rem; 
    letter-spacing: 5px; 
    margin: 0;
    color: #ffff; }
.brand-title span { color: #ffff; font-size: 0.8rem; letter-spacing: 1px; }

.watermark {
    position: absolute;
    bottom: 15%;
    font-size: 7rem;
    font-weight: 800;
    opacity: 0.03;
    user-select: none;
}

/* --- Right Form Side --- */
.login-right {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px;
}

.form-container {
    width: 100%;
    max-width: 420px;
}

.form-header h2 { font-size: 2rem; margin-bottom: 10px; }
.form-header p { color: var(--text-muted); margin-bottom: 40px; font-size: 0.95rem; }

.input-field { margin-bottom: 25px; }
.input-field label { display: block; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 10px; }

.input-field input {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid rgba(184, 148, 148, 0.2);
    padding: 14px 20px;
    border-radius: 25px;
    color: rgb(0, 0, 0);
    outline: none;
    transition: 0.3s;
}

.input-field input:focus { border-color: var(--primary-blue); }

.login-btn {
    width: 100%;
    background: #800000;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover { background-color: #c72828; transform: translateY(-2px); }

.footer-link { text-align: center; margin-top: 25px; font-size: 0.9rem; color: var(--text-muted); }
.footer-link a { color: rgb(0, 0, 0); text-decoration: none; font-weight: 600; }

/* --- Bottom Credits --- */
.bottom-info {
    position: absolute;
    text-align: center;
    bottom: 40px;
    width: 100%;
    padding: 0 60px;
}

.page-indicator { text-align: right; margin-bottom: 10px; color:#6B7280; font-size: 0.95rem; }
.page-indicator strong { color: #800000; }

.group-credits {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.774);
    border-top: 1px solid rgb(0, 0, 0);
    padding-top: 15px;
}


.hidden {
    display: none;
}

.icon-eye {
    width: 24px;
    height: 24px;
    padding-top: 3px;
}


.email-link {
    color: #666666;
    text-decoration: none;
    font-weight: 600;
}

.email-link:hover {
    text-decoration: underline;
    color: #800000;
    font-weight: 800;
}


.btn-privacy{
    color: rgb(0, 0, 0, 0.774);
    text-decoration: none;
    font-size: .8rem;
    display: inline-block;
    transition: 0.3s ease;
    margin-top: 10px;
}

.btn-privacy:hover {
    color: #800000; /* Darker blue on hover */
    transform: translateY(-2px);
    font-weight: bold;
    text-decoration: underline;
}