.elementor-513 .elementor-element.elementor-element-95b7a50 .elementor-background-overlay{width:100%;height:100%;}/* Start custom CSS for shortcode, class: .elementor-element-7e82f74 *//* otp-form-style.css */

/* Container */
.styled-register-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 40px auto;
    font-family: "Segoe UI", sans-serif;
}

/* Row layout */
.styled-register-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Input group */
.styled-register-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.styled-register-form .form-group.half {
    flex: 0 0 48%;
}

/* Labels */
.styled-register-form label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Inputs */
.styled-register-form input {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.styled-register-form input:focus {
    border-color: #007bff;
    outline: none;
}

/* Required asterisk */
.styled-register-form .required {
    color: red;
    margin-left: 4px;
}

/* Submit button */
.styled-register-form .submit-button {
    padding: 12px 24px;
    background-color: #e74c3c;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.styled-register-form .submit-button:hover {
    background-color: #c0392b;
}

/* Message area */
.styled-register-form p {
    margin-top: 10px;
}/* End custom CSS */