/* ================================================================
   SIGNUP — Horizontal Landscape Layout
   Loads AFTER login.css to convert vertical to horizontal
   ================================================================ */

body {
    display: flex;
    padding: 0;
    align-items: stretch;
    background-image: none;
    background: #0d0d1a;
}

.signup-landscape {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* ========== LEFT BRAND PANEL ========== */
.signup-brand-panel {
    width: 42%;
    min-width: 360px;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    color: white;
    flex-shrink: 0;
}

.signup-brand-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.brand-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 340px;
}

.brand-panel-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid rgba(218, 173, 41, 0.4);
}

.brand-panel-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: white;
}

.brand-panel-tagline {
    font-size: 14px;
    color: rgba(218, 173, 41, 0.9);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.brand-panel-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brand-panel-feat {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.brand-panel-feat i {
    width: 36px;
    height: 36px;
    background: rgba(218, 173, 41, 0.15);
    border: 1px solid rgba(218, 173, 41, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(218, 173, 41, 0.9);
    flex-shrink: 0;
}

.brand-back-btn {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.brand-back-btn:hover {
    border-color: rgba(218, 173, 41, 0.6);
    color: rgba(218, 173, 41, 0.9);
    background: rgba(218, 173, 41, 0.1);
}

/* ========== RIGHT FORM PANEL ========== */
.signup-form-panel {
    flex: 1;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center right;
    position: relative;
}

.signup-form-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.signup-form-panel .login-container {
    position: relative;
    z-index: 2;
    max-width: 580px;
    width: 100%;
    padding: 0;
}

.signup-form-panel .title {
    font-size: 26px;
    margin-bottom: 30px;
}

/* 2-column field rows */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-row-2 .form-group {
    margin-bottom: 14px;
}

.signup-form-panel .form-group {
    margin-bottom: 14px;
}

.signup-form-panel .input-icon-group {
    margin-bottom: 0;
}

.signup-form-panel .signup-button {
    width: 50%;
    margin-top: 20px;
}

.signup-form-panel .terms-group label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.signup-form-panel .terms-group label strong {
    color: rgba(218, 173, 41, 0.9);
}

/* Font Awesome needed for brand panel */
.signup-brand-panel .fa-solid {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .signup-landscape {
        flex-direction: column;
    }

    .signup-brand-panel {
        width: 100%;
        min-width: auto;
        padding: 40px 24px;
    }

    .brand-panel-features { display: none; }
    .brand-panel-tagline { margin-bottom: 0; }

    .signup-form-panel {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .signup-brand-panel { padding: 30px 20px; }
    .brand-panel-title { font-size: 22px; }
    .signup-form-panel .title { font-size: 22px; margin-bottom: 20px; }
    .form-row-2 { grid-template-columns: 1fr; }
}
