.elementor-408 .elementor-element.elementor-element-498505f2{--display:flex;}.elementor-408 .elementor-element.elementor-element-e3cbd38{transition:all 400ms;text-align:center;}.elementor-408 .elementor-element.elementor-element-e3cbd38 .elementor-heading-title{font-family:"Times New Roman", Sans-serif;}.elementor-408 .elementor-element.elementor-element-55d84c2a{width:100%;max-width:100%;transition:all 400ms;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-55d84c2a *//* === CLEAN & PROFESSIONAL REGISTRATION PAGE === */


/* Registration Form Box with Smooth Scroll */
.um.um-register {
    max-width: 550px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.5s ease-in-out;

    /* SCROLL SETTINGS */
    max-height: 80vh;
    overflow-y: auto;
    scroll-behavior: smooth;
}

/* Optional: Style Scrollbar (Chrome/WebKit) */
.um.um-register::-webkit-scrollbar {
    width: 6px;
}
.um.um-register::-webkit-scrollbar-thumb {
    background-color: #FF416C;
    border-radius: 4px;
}
.um.um-register::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Heading */
.um.um-register h1.um-form-heading {
    text-align: center;
    font-size: 26px;
    color: #0f0f0f;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Input Fields */
.um.um-register input[type="text"],
.um.um-register input[type="email"],
.um.um-register input[type="password"],
.um.um-register input[type="tel"],
.um.um-register select,
.um.um-register textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 18px;
    font-size: 15px;
    background: #f7fafc;
    border: 1px solid #cbd5e0;
    border-radius: 10px;
    color: #2d3748;
    transition: all 0.3s ease;
}

.um.um-register input:focus,
.um.um-register select:focus,
.um.um-register textarea:focus {
    border-color: #FF416C;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255, 65, 108, 0.25);
    outline: none;
}

/* Submit Button */
.um.um-register input.um-button {
    background: #FF416C;
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.um.um-register input.um-button:hover {
    background: #FF4B2B;
}

/* Bottom Links */
.um.um-register .um-col-alt {
    text-align: center;
    margin-top: 20px;
}

.um.um-register .um-col-alt a {
    color: #FF416C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.um.um-register .um-col-alt a:hover {
    color: #FF4B2B;
    text-decoration: underline;
}

/* Animation */
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 500px) {
    .um.um-register {
        padding: 30px 20px;
        max-height: none;
        overflow-y: visible;
    }

    .um.um-register h1.um-form-heading {
        font-size: 22px;
    }
}/* End custom CSS */