.elementor-411 .elementor-element.elementor-element-546884ef{--display:flex;}.elementor-411 .elementor-element.elementor-element-2d984eb4{transition:all 400ms;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-2d984eb4 *//* === Login Page Full Styling === */
body.um-page-login {
   
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 50px 15px;
    min-height: 100vh;
}

/* Center form */
.um.um-login {
    max-width: 450px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}

/* Form heading */
.um.um-login h1.um-form-heading {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    color: #0F0F0F;
}

/* Input styling */
.um.um-login .um-form input[type="text"],
.um.um-login .um-form input[type="password"] {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.um.um-login .um-form input[type="text"]:focus,
.um.um-login .um-form input[type="password"]:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Submit button */
.um.um-login .um-form input.um-button {
    background: #007BFF;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background 0.3s ease;
}

.um.um-login .um-form input.um-button:hover {
    background: #0056b3;
}

/* Links (e.g. forgot password) */
.um.um-login .um-form .um-col-alt a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 500;
}

.um.um-login .um-form .um-col-alt a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
    .um.um-login {
        padding: 25px 20px;
    }
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-546884ef *//* === LOGIN PAGE CONTAINER STYLE === */
body.um-page-login 
  


/* Centered Form Box */
.um.um-login {
    max-width: 500px;
    margin: 40px auto;
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    animation: slideIn 0.4s ease-in-out;
}

/* Form Heading */
.um.um-login h1.um-form-heading {
    font-size: 26px;
    font-weight: 600;
    color: #0f0f0f;
    text-align: center;
    margin-bottom: 30px;
}

/* Input Fields */
.um.um-login input[type="text"],
.um.um-login input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 15px;
    background: #f7fafc;
    border: 1px solid #cbd5e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #2d3748;
}

.um.um-login input[type="text"]:focus,
.um.um-login input[type="password"]:focus {
    border-color: #FF416C;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255, 65, 108, 0.3);
    outline: none;
}

/* Submit Button */
.um.um-login input.um-button {
    width: 100%;
    padding: 14px;
    background: #FF416C;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.um.um-login input.um-button:hover {
    background: #FF4B2B;
}

/* Links (e.g., forgot password) */
.um.um-login .um-col-alt {
    text-align: center;
    margin-top: 18px;
}

.um.um-login .um-col-alt a {
    color: #FF416C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.um.um-login .um-col-alt a:hover {
    color: #FF4B2B;
    text-decoration: underline;
}

/* Fade-in animation */
@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media screen and (max-width: 500px) {
    .um.um-login {
        padding: 30px 20px;
    }

    .um.um-login h1.um-form-heading {
        font-size: 22px;
    }
}/* End custom CSS */