.register-form-section {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    min-height: 60vh;
}

.register-form-panel {
    background: #e0e0e0;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 1400px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
}

.register-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.register-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.register-input-group > div {
    display: flex;
    align-items: center;
}

.register-forgot-link {
    color: white;
    font-size: 0.75rem;
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
    margin-left: 1rem;
}

.register-forgot-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}


.register-input {
    background: white;
    border: 2px solid white;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
    color: #333;
    width: 100%;
}

.register-input:focus {
    border-color: #4A634A;
}

.register-input::placeholder {
    color: #999;
    font-weight: 500;
}

.register-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    margin-left: 0.5rem;
}

.register-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.register-submit-btn {
    background: white;
    border: 2px solid white;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.register-submit-btn:hover {
    background: #f5f5f5;
    border-color: #4A634A;
    color: #4A634A;
}

.register-separator {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: #666;
    font-size: 0.9rem;
}

.register-separator::before,
.register-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ccc;
}

.register-separator span {
    padding: 0 1rem;
}

.register-social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.register-social-btn {
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.register-social-btn:hover {
    background: #f5f5f5;
    border-color: #4A634A;
    transform: translateY(-2px);
}

.register-social-btn svg {
    width: 24px;
    height: 24px;
}

.register-social-btn.google svg {
    width: 20px;
    height: 20px;
}

.register-social-btn.apple svg {
    width: 20px;
    height: 20px;
}

.register-social-btn.facebook {
    color: #1877F2;
}

.register-social-btn.facebook svg {
    width: 20px;
    height: 20px;
}

.register-login-link {
    text-align: center;
    margin-top: 1.5rem;
    color: white;
    font-size: 0.9rem;
}

.register-login-link a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.register-login-link a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .register-form-section {
        margin-top: -5vh;
        padding: 2rem 1.5rem;
    }

    .register-form-panel {
        padding: 2rem 1.5rem;
    }

    .register-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .register-social-buttons {
        gap: 0.75rem;
    }

    .register-social-btn {
        width: 50px;
        height: 50px;
        padding: 0.75rem;
    }

    .register-forgot-link {
        font-size: 0.7rem;
        margin-left: 0.5rem;
    }
}

