*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: var(--font-system);
    overflow-x: hidden;
    background-color: var(--primary-white);
    min-height: 100vh;
}

.register-container {
    display: flex;
    min-height: 100vh;
}

/* ========================================
   LEFT SECTION - SPLASH ART
   ======================================== */

.splash-section {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.splash-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splash-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--primary-dark);
    opacity: 0.6;
}

/* Title Text Line 1 */
.splash-text-line1 {
    position: absolute;
    top: 30%;
    left: 10%;
    z-index: 10;
    background-color: var(--primary-dark);
    padding: var(--spacing-2px) var(--spacing-8px);
}

.splash-text-line1 h1 {
    color: var(--primary-green);
    font-family: var(--font-display);
    font-size: 85px;
    font-weight: 400;
    line-height: 0.96;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Title Text Line 2 */
.splash-text-line2 {
    position: absolute;
    top: 39%;
    left: 10%;
    z-index: 10;
    background-color: var(--primary-dark);
    padding: var(--spacing-2px) var(--spacing-8px);
}

.splash-text-line2 h1 {
    color: var(--primary-green);
    font-family: var(--font-display);
    font-size: 85px;
    font-weight: 400;
    line-height: 0.96;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Description Text */
.splash-description {
    position: absolute;
    bottom: 20%;
    left: 8%;
    right: 8%;
    z-index: 10;
    padding: var(--spacing-20px);
}

.splash-description p {
    font-family: var(--font-accent);
    font-size: 45px;
    font-weight: 300;
    color: var(--primary-white);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   RIGHT SECTION - REGISTRATION FORM
   ======================================== */

.form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-40px) var(--spacing-20px);
    background-color: var(--primary-white);
}

.auth-box {
    width: 100%;
    max-width: var(--spacing-600px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-35px);
}

.auth-logo {
    width: var(--spacing-50px);
    height: var(--spacing-50px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-logo img {
    width: 100%;
    height: auto;
}

.auth-title {
    font-family: var(--font-accent);
    font-size: 64px;
    font-weight: 400;
    color: var(--primary-dark);
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

/* Social Login Buttons */
.social-login {
    display: flex;
    gap: var(--spacing-20px);
    justify-content: center;
}

.social-btn {
    width: 91px;
    height: 65px;
    background-color: var(--accent-light-gray);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--gray-border);
    transform: scale(1.05);
}

/* Divider */
.auth-divider {
    width: 100%;
    max-width: var(--spacing-441px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-20px);
    margin: var(--spacing-5px) 0;
}

.divider-line {
    width: var(--spacing-166px);
    height: 0.5px;
    background-color: var(--gray-border);
}

.divider-text {
    font-family: var(--font-sf-pro);
    font-size: 16px;
    font-weight: 100;
    font-stretch: condensed;
    color: var(--gray-black);
    white-space: nowrap;
}

/* Auth Form */
.auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-20px);
}

.auth-input {
    width: 100%;
    max-width: var(--spacing-441px);
    height: 62px;
    background-color: transparent;
    border: 0.5px solid var(--gray-border);
    border-radius: 10px;
    padding: 0 var(--spacing-20px);
    font-family: var(--font-sf-pro);
    font-size: 20px;
    font-weight: 100;
    font-stretch: condensed;
    color: var(--gray-black);
    transition: border-color 0.3s ease;
}

.auth-input::placeholder {
    color: var(--gray-black);
    font-family: var(--font-sf-pro);
    font-size: 20px;
    font-weight: 100;
    font-stretch: condensed;
}

.auth-input:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Submit Button */
.auth-submit-btn {
    width: 100%;
    max-width: 441px;
    height: 62px;
    background-color: var(--primary-green);
    border: none;
    border-radius: 10px;
    font-family: var(--font-accent);
    font-size: 30px;
    color: var(--gray-black);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--spacing-10px);
}

.auth-submit-btn:hover {
    background-color: var(--primary-green);
    transform: scale(1.02);
}

/* Forgot Password Link */
.forgot-link {
    font-family: var(--font-sf-pro);
    font-size: 16px;
    font-weight: 100;
    font-stretch: condensed;
    color: var(--gray-black);
    text-decoration: none;
    margin-top: var(--spacing-10px);
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--primary-green);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .splash-text-line1 h1,
    .splash-text-line2 h1 {
        font-size: 96px;
    }
    
    .splash-description p {
        font-size: 18px;
    }
    
    .auth-title {
        font-size: 48px;
    }
    
    .social-btn {
        width: 75px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .register-container {
        flex-direction: column;
    }
    
    .splash-section {
        min-height: 50vh;
    }
    
    .splash-text-line1 h1,
    .splash-text-line2 h1 {
        font-size: 64px;
    }
    
    .splash-description {
        left: 5%;
        right: 5%;
        padding: var(--spacing-15px);
    }
    
    .splash-description p {
        font-size: 16px;
    }
    
    .auth-title {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .splash-text-line1 h1,
    .splash-text-line2 h1 {
        font-size: 48px;
    }
    
    .splash-description p {
        font-size: 14px;
    }
    
    .auth-title {
        font-size: 36px;
    }
    
    .social-btn {
        width: 65px;
        height: 50px;
    }
    
    .divider-line {
        width: var(--spacing-80px);
    }
    
    .divider-text {
        font-size: 14px;
    }
    
    .auth-input,
    .auth-submit-btn {
        font-size: 16px;
        height: 55px;
    }
    
    .auth-submit-btn {
        font-size: 24px;
    }
}