/*
 * EyeKon University Success Program — Form Styles
 * Light Mode Design
 */

.eyekon-university-form {
    max-width: 480px;
    margin: 0 auto;
    padding: 32px 16px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.eyekon-uni-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    text-align: center;
    line-height: 1.3;
}

.eyekon-uni-subtitle {
    font-size: 14px;
    color: #475569;
    margin: 0 0 24px 0;
    text-align: center;
    line-height: 1.5;
}

/* Role toggle */
.eyekon-uni-role-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.eyekon-uni-role-label {
    font-size: 14px;
    color: #64748b;
}

.eyekon-uni-role-buttons {
    display: flex;
    gap: 8px;
}

.eyekon-uni-role-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.eyekon-uni-role-btn:hover {
    color: #0f172a;
}

.eyekon-uni-role-btn.active {
    background: #00e0e5;
    color: #0a0e17;
}

/* Input group */
.eyekon-uni-input-group {
    margin-bottom: 16px;
}

.eyekon-uni-email,
.eyekon-uni-otp {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.eyekon-uni-email::placeholder,
.eyekon-uni-otp::placeholder {
    color: #94a3b8;
}

.eyekon-uni-email:focus,
.eyekon-uni-otp:focus {
    border-color: #00e0e5;
    box-shadow: 0 0 0 3px rgba(0, 224, 230, 0.15);
}

/* Buttons */
.eyekon-uni-btn-primary {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    background: #00e0e5;
    color: #0a0e17;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.eyekon-uni-btn-primary:hover {
    background: #00c0c5;
}

.eyekon-uni-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.eyekon-uni-resend,
.eyekon-uni-back {
    width: 100%;
    text-align: center;
}

.eyekon-uni-resend:hover,
.eyekon-uni-back:hover {
    text-decoration: underline;
}

/* Note */
.eyekon-uni-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #94a3b8;
}

/* Step 3 success */
.eyekon-uni-step-3 .eyekon-uni-title {
    color: #00e0e5;
}

/* Responsive */
@media (max-width: 640px) {
    .eyekon-university-form {
        padding: 24px 0;
    }

    .eyekon-uni-title {
        font-size: 20px;
    }
}
