/* ========================================= */
/* WP-Members Forms - Divi Style Overrides   */
/* ========================================= */

.button_div {
    margin-top: 25px !important;
}

/* 1. Submission Button (MAX SPECIFICITY & COLORS) */
#wpmem_login input[type="submit"],
#wpmem_reg input[type="submit"],
#wpmem_profile input[type="submit"],
#wpmem_login .wpmem_submit,
#wpmem_reg .wpmem_submit,
#wpmem_profile .wpmem_submit {
    /* Base Button Styles */
    display: inline-block !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 12px 30px !important;
    border-radius: 3px !important;
    font-weight: 600 !important;
    text-shadow: none !important;
    line-height: 1.5em !important;
    
    /* Custom Background Color */
    background-color: #00004d !important; /* Deep Indigo */
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease-in-out;
    background-image: none !important;
}

/* Button Hover State */
#wpmem_login input[type="submit"]:hover,
#wpmem_reg input[type="submit"]:hover,
#wpmem_profile input[type="submit"]:hover,
#wpmem_login .wpmem_submit:hover,
#wpmem_reg .wpmem_submit:hover,
#wpmem_profile .wpmem_submit:hover {
    background-color: #f3cfc6 !important; /* Rosy Pink */
    color: #00004d !important; /* Deep Indigo Text */
    opacity: 1 !important; 
    transform: translateY(-1px);
    background-image: none !important;
    box-shadow: none !important; 
}


/* 2. Form Container Styling (Login, Registration, Profile) */
#wpmem_login,
#wpmem_reg,
#wpmem_profile {
    max-width: 450px;
    margin: 30px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 18px 0 rgba(0, 0, 0, 0.08);
}


/* 3. Form Fields (Inputs/Textarea) */
#wpmem_login input[type="text"],
#wpmem_login input[type="password"],
#wpmem_reg input[type="text"],
#wpmem_reg input[type="password"],
#wpmem_reg input[type="email"],
#wpmem_profile input[type="text"],
#wpmem_profile input[type="password"],
#wpmem_profile input[type="email"],
#wpmem_reg textarea,
#wpmem_profile textarea {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    background-color: #fcfcfc !important;
    font-size: 14px !important;
    line-height: 1.5em !important;
    color: #333 !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s ease-in-out;
}

/* Focus State for Fields (Deep Indigo Accent) */
#wpmem_login input[type="text"]:focus,
#wpmem_login input[type="password"]:focus,
#wpmem_reg input[type="text"]:focus,
#wpmem_reg input[type="password"]:focus,
#wpmem_reg input[type="email"]:focus,
#wpmem_profile input[type="text"]:focus,
#wpmem_profile input[type="password"]:focus,
#wpmem_profile input[type="email"]:focus,
#wpmem_reg textarea:focus,
#wpmem_profile textarea:focus {
    border-color: #00004d !important; /* Deep Indigo Accent */
    outline: none !important;
    box-shadow: 0 0 0 1px #00004d !important; /* Deep Indigo Accent */
}

/* 4. Labels and Spacing */
#wpmem_login label,
#wpmem_reg label,
#wpmem_profile label {
    display: block !important;
    margin-bottom: 5px !important;
    font-weight: 600 !important;
    color: #444 !important;
    font-size: 14px !important;
}
#wpmem_login p,
#wpmem_reg p,
#wpmem_profile p {
    margin-bottom: 15px !important;
}

/* 5. Messages (Errors/Success) */
.wpmem_msg {
    padding: 15px !important;
    margin-bottom: 20px !important;
    border-radius: 4px !important;
    border-left: 5px solid;
    font-size: 15px !important;
}
.wpmem_msg.success {
    background-color: #e9fbe5 !important;
    border-color: #8ac38d !important;
    color: #38761d !important;
}
.wpmem_msg.error {
    background-color: #ffe6e6 !important;
    border-color: #ff9999 !important;
    color: #cc0000 !important;
}

/* 6. Checkboxes & Radio Buttons */
#wpmem_reg .wpmem-form-check label,
#wpmem_profile .wpmem-form-check label {
    font-weight: normal !important;
    display: inline !important;
    margin-left: 5px !important;
    cursor: pointer;
}
#wpmem_reg .wpmem-form-check input[type="checkbox"],
#wpmem_reg .wpmem-form-check input[type="radio"],
#wpmem_profile .wpmem-form-check input[type="checkbox"],
#wpmem_profile input[type="radio"] {
    width: auto !important;
    margin-right: 5px !important;
}

/* 7. Footer Links (Deep Indigo Accent) */
.wpmem_footer,
#wpmem_login .wpmem_links {
    text-align: center;
    margin-top: 15px;
}
.wpmem_footer a,
#wpmem_login .wpmem_links a {
    color: #00004d !important; /* Deep Indigo Accent */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.wpmem_footer a:hover,
#wpmem_login .wpmem_links a:hover {
    text-decoration: underline;
}

/* 8. Fieldset Legend (H3 Style) - Visually Displayed */
/* This section has been kept as is from your last input, assuming 
   you want the legend displayed and styled like an H3. */
#wpmem_reg fieldset legend,
#wpmem_profile fieldset legend {
    display: block !important;
    width: 100% !important;
    padding: 0 0 10px 0 !important;
    margin: 20px 0 15px 0 !important;
    border: none !important;
    box-sizing: border-box !important;

    font-family: 'Montserrat', sans-serif !important;
    font-size: 20px !important;
    line-height: 1.3em !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0px !important;
    color: #333333 !important;
    border-bottom: 1px solid #eee !important;
}

/* Legend Spacing Fix */
#wpmem_reg fieldset:first-of-type legend,
#wpmem_profile fieldset:first-of-type legend {
    margin-top: 0 !important;
}