.elementor-416 .elementor-element.elementor-element-e31be25{--display:flex;--min-height:500px;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-416 .elementor-element.elementor-element-456e3a9{width:var( --container-widget-width, 40% );max-width:40%;--container-widget-width:40%;--container-widget-flex-grow:0;}.elementor-416 .elementor-element.elementor-element-456e3a9.elementor-element{--align-self:center;}/* Start custom CSS for pms-login, class: .elementor-element-456e3a9 *//* Login Card */
.pms-form {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    padding: 40px 36px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Labels */
.pms-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

/* Inputs */
.pms-form input[type="text"],
.pms-form input[type="email"],
.pms-form input[type="password"] {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #cbd5f5;
    background: #f8fafc;
    font-size: 15px;
    transition: all 0.25s ease;
}

.pms-form input:focus {
    outline: none;
    border-color: #4f46e5;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* Spacing between fields */
.login-username,
.login-password {
    margin-bottom: 18px;
}

/* Remember Me */
.login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
    margin-bottom: 22px;
}

.login-remember input {
    accent-color: #4f46e5;
}

/* Login Button */
.login-submit input[type="submit"] {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-submit input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.4);
}

/* Extra Links */
.login-extra {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.login-extra a {
    color: #4f46e5;
    font-weight: 500;
    text-decoration: none;
}

.login-extra a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 480px) {
    .pms-form {
        padding: 30px 24px;
        border-radius: 14px;
    }
}/* End custom CSS */