/* ============================================
   REGISTRATION PAGE
   ============================================ */

/* Registration Hero Section */
.reg-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1510;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 40px;
}

.reg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 25, 18, 0.75) 0%,
        rgba(61, 52, 45, 0.80) 100%
    );
}

.reg-hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Welcome Content */
.reg-welcome {
    color: white;
    padding-right: 20px;
}

.reg-welcome-cross {
    display: block;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1;
}

.reg-welcome h1 {
    font-size: 44px;
    font-weight: normal;
    margin-bottom: 12px;
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
    line-height: 1.2;
}

.reg-welcome-subtitle {
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    line-height: 1.6;
}

.reg-welcome-divider {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: 25px;
}

.reg-welcome-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.reg-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.reg-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reg-step-number {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    font-family: Arial, sans-serif;
}

.reg-step-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/* Right Side - Registration Form */
.reg-form-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 42px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.18) inset;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.reg-form-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8b7355, #b89e7a, #8b7355);
    opacity: 0.9;
}

.reg-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.reg-form-title {
    font-size: 26px;
    font-weight: normal;
    color: #3d342d;
    margin-bottom: 6px;
    font-family: 'Georgia', serif;
}

.reg-form-desc {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.reg-field {
    margin-bottom: 20px;
}

.reg-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #3d342d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: Arial, sans-serif;
}

.reg-field input,
.reg-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0dbd4;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Georgia', serif;
    color: #3d342d;
    background: #faf9f7;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.reg-field input:focus,
.reg-field textarea:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.12);
    background: white;
}

.reg-field input::placeholder,
.reg-field textarea::placeholder {
    color: #c0b9af;
}

.reg-field textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
}

.reg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.reg-submit-btn {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #8b7355, #6d5a45);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    margin-top: 8px;
}

.reg-submit-btn:hover {
    background: linear-gradient(135deg, #7a6548, #5c4c3a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.35);
}

.reg-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
}

.reg-link {
    color: #8b7355;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.reg-link:hover {
    color: #3d342d;
}

/* Responsive */
@media (max-width: 968px) {
    .reg-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .reg-welcome {
        text-align: center;
        padding-right: 0;
    }

    .reg-welcome-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .reg-steps {
        align-items: center;
    }

    .reg-welcome h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .reg-hero {
        padding: 40px 20px;
    }

    .reg-form-panel {
        padding: 30px 22px;
    }

    .reg-welcome h1 {
        font-size: 32px;
    }

    .reg-row {
        grid-template-columns: 1fr;
    }
}
