/* General Styling */
body {
    background-color: #f3f4f7;
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.auth-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.auth-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.auth-header p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 30px;
}

/* Form Elements */
.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    font-size: 18px;
    color: #a0aec0;
}

.form-group input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus {
    outline: none;
    border-color: #4f46e5;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Button */
.btn-primary {
    width: 100%;
    background: #4f46e5;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.btn-primary:hover {
    background: #4338ca;
}

/* Status Messages */
.error-msg {
    color: #e53e3e;
    background: #fff5f5;
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 20px;
    border-left: 4px solid #e53e3e;
}

.otp-display {
    color: #2f855a;
    background: #f0fff4;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    margin-top: 15px;
    font-weight: bold;
    border: 1px dashed #48bb78;
}

.auth-footer {
    margin-top: 25px;
    font-size: 14px;
    color: #718096;
}

.auth-footer a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}

/* OTP Specific Input */
.otp-input {
    letter-spacing: 10px;
    text-align: center;
    font-size: 24px !important;
    padding-left: 15px !important;
}