/* My Account Frontend & Meta Widget Styles */

.myaccount-form {
    max-width: 500px;
    margin: 20px auto;
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.myaccount-form h3 {
    text-align: center;
    margin-bottom: 15px;
}

.myaccount-form p {
    margin-bottom: 15px;
}

.myaccount-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.myaccount-form input[type="password"],
.myaccount-form input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.myaccount-form input[type="submit"] {
    background-color: #0073aa;
    border: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
}

.myaccount-form input[type="submit"]:hover {
    background-color: #005177;
}

.myaccount-error {
    background-color: #ffebe8;
    border: 1px solid #dd3c10;
    color: #a00;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 3px;
}

.myaccount-success {
    background-color: #e1f3d8;
    border: 1px solid #b7d6a3;
    color: #467a1e;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 3px;
}

/* Additional styling for the Custom Meta Widget */
.widget_custom_meta_widget {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.widget_custom_meta_widget .widget-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}
