body {
    background: linear-gradient(135deg, #eae4e4 0%, #d8d0e8 50%, #e8c188 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.register-wrapper {
    width: 100%;
    max-width: 1000px;
}

.register-header {
    text-align: center;
    margin-bottom: 40px;
    color: #1f2937;
    text-transform: uppercase;
    font-weight: bold;
}

.register-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.register-header p {
    font-size: 16px;
    opacity: 0.95;
}

.register-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.register-left {
    background: linear-gradient(135deg, #120233 0%, #34068f 100%);
    padding: 60px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.register-left .features {
    list-style: none;
    margin-top: 32px;
}

.register-left .features li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
}

.register-left .features i {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.register-right {
    padding: 60px;
    overflow-y: auto;
    max-height: 700px;
}

.form-steps {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    transition: all 0.3s;
}

.step-dot.active {
    background: #FE9805FF;
    width: 32px;
    border-radius: 6px;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.step-subtitle {
    color: #6b7280;
    margin-bottom: 32px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #4e0fd9;
    box-shadow: 0 0 0 4px rgba(78, 15, 217, 0.1);
}

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

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #4e0fd9 0%, #6b2ee3 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(78, 15, 217, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3d0bae 0%, #5520c7 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(78, 15, 217, 0.4);
}

.btn-secondary {
    background: #e5e7eb;
    color: #374151;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.btn-group {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.login-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #6b7280;
}

.login-link a {
    color: #fe9805;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

.password-strength {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.3s;
    border-radius: 2px;
}

.strength-weak {
    width: 33%;
    background: #ef4444;
}

.strength-medium {
    width: 66%;
    background: #f59e0b;
}

.strength-strong {
    width: 100%;
    background: #10b981;
}

@media (max-width: 768px) {
    .register-container {
        grid-template-columns: 1fr;
    }

    .register-left {
        display: none;
    }

    .register-right {
        padding: 40px 24px;
    }

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