/* ey-mobile-register.css */
/* Mobile Registration Form Styling */

#ey-mobile-register {
    max-width: 400px;
    margin: 40px auto;
    padding: 25px;
    border: 2px solid #2e7d32; /* Ever Young green */
    border-radius: 12px;
    background: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    #ey-mobile-register h3 {
        text-align: center;
        color: #2e7d32;
        margin-bottom: 20px;
        font-size: 20px;
    }

    #ey-mobile-register label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
        color: #333;
    }

    #ey-mobile-register input[type="text"],
    #ey-mobile-register input[type="password"],
    #ey-mobile-register input[type="number"] {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        box-sizing: border-box;
        margin-bottom: 15px;
        font-size: 14px;
    }

    #ey-mobile-register button {
        width: 100%;
        padding: 12px;
        background: #2e7d32;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 15px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s ease;
    }

        #ey-mobile-register button:hover {
            background: #1b5e20;
        }

#otp-section {
    margin-top: 15px;
}

#ey-register-message {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
    color: #d63031; /* error red */
    min-height: 20px;
}
