/* --- Golden Wire Brand Variables --- */
:root {
    --brand-gold-primary: #d4af37;
    --brand-gold-dark: #b48608;
    --brand-gold-light: #f9e076;
    --electric-black: #1a1a1a;
    --soft-white: #f8f9fa;
    --error-red: #e3342f;
}

/* --- Layout Structure --- */
.login-container {
    display: flex;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: var(--soft-white);
}

/* --- Left Side: Form Area --- */
.login-form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--brand-gold-primary);
}

/* --- Typography --- */
.login-header-img-div{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.login-header-img-div img{
    width: 12rem;
}
.brand-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.brand-header h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--electric-black);
    letter-spacing: -0.5px;
}

.welcome-text h2 {
    font-size: 1.8rem;
    color: var(--electric-black);
    margin-bottom: 0.5rem;
}

.welcome-text p {
    color: #666;
    font-size: 0.9rem;
}

/* --- Form Inputs --- */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Ensures padding doesn't break width */
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* --- The "Electric" Button --- */
.btn-primary {
    width: 100%;
    background: var(--brand-gold-primary);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 1rem;
}

.btn-primary:hover {
    background: var(--brand-gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(180, 134, 8, 0.3);
}

/* --- Right Side: Brand Panel --- */
.login-visual-section {
    flex: 1.2;
    background: linear-gradient(135deg, var(--electric-black) 0%, #2c2c2c 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Decorative Gold Wire Effect */
.login-visual-section::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        rgba(212, 175, 55, 0.05) 0px,
        rgba(212, 175, 55, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
}

/* Responsive Hide for Mobile */
@media (max-width: 900px) {
    .login-visual-section {
        display: none;
    }
}