.auth-container {
    padding: 40px 30px; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: #fff;
}
.auth-logo { width: 100px; height: 100px; border-radius: 25px; background: var(--bg-gray); margin-bottom: 20px; object-fit: cover; box-shadow: var(--shadow-soft); }
.auth-title { font-size: 24px; font-weight: 900; margin-bottom: 10px; color: #000; }
.auth-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 40px; text-align: center; line-height: 1.6; }

.form-group { width: 100%; margin-bottom: 20px; position: relative; }
.form-input {
    width: 100%; padding: 16px; border: 2px solid var(--bg-gray); border-radius: 16px;
    background: var(--bg-gray); font-size: 16px; font-weight: bold; text-align: center; letter-spacing: 2px;
    transition: 0.3s; color: #000;
}
.form-input:focus { border-color: var(--primary); background: #fff; }
.form-input::placeholder { color: #ccc; letter-spacing: 0; font-weight: normal; }

.btn-primary {
    width: 100%; padding: 16px; border-radius: 16px; background: var(--primary); color: #000;
    font-weight: 900; font-size: 16px; cursor: pointer; box-shadow: 0 10px 20px rgba(250, 204, 21, 0.2);
    transition: 0.2s; display: flex; align-items: center; justify-content: center;
}
.btn-primary:active { transform: scale(0.98); }
.btn-text { background: none; color: var(--text-muted); font-size: 12px; margin-top: 15px; cursor: pointer; }

/* OTP INPUTS */
.otp-box { display: flex; gap: 10px; justify-content: center; direction: ltr; margin-bottom: 30px; }
.otp-digit {
    width: 50px; height: 60px; border: 2px solid var(--border-color); border-radius: 12px;
    font-size: 24px; font-weight: bold; text-align: center; background: #fff;
}
.otp-digit:focus { border-color: var(--primary); }

/* REGISTRATION FORM */
.reg-form { width: 100%; text-align: right; display: none; }
.reg-form.active { display: block; animation: slideUp 0.4s ease; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.label-float { font-size: 12px; color: #666; margin-bottom: 5px; display: block; margin-right: 5px; }