/* OTP Wrapper Card */
#email-otp-auth-wrapper {
    max-width: 520px;
    margin: 100px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}
.login-title {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Heading */
#email-otp-auth-wrapper h2 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Labels */
#email-otp-auth-wrapper label {
    display: block;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

/* Inputs */
#email-otp-auth-wrapper input {
    width: 100% !important;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    margin-bottom: 15px;
}

#email-otp-auth-wrapper input:focus {
    outline: none;
    border-color: #0d6efd;
}

/* Buttons */
#email-otp-auth-wrapper button {
	width: 100%;
	padding: 12px;
	background: #ffc715;
	color: #000000;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

#email-otp-auth-wrapper button:hover {
    background: #000000;
    color: #ffc715;
}

/* Resend button */
#eoa-resend-btn {
    margin-top: 10px;
    background: #6c757d;
}

#eoa-resend-btn:hover {
    background: #5c636a;
}

/* Messages */
#eoa-send-msg,
#eoa-otp-msg {
    font-size: 14px;
    margin-top: 10px;
}

