/* 
 Theme Name:   Author Dashboard v2
 Theme URI:    
 Description:  
 Author:       Rajender Singh Bisht
 Author URI:   https://www.prachidigital.com
 Template:     generatepress
 Version:      2.6
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

 /* == Add your own styles below this line ==
--------------------------------------------*/




.edit-profile-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.edit-profile-container h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-form p {
    margin: 0;
}

.profile-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.profile-form input[type="text"],
.profile-form input[type="email"],
.profile-form input[type="password"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.profile-form input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

.profile-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.profile-form input[type="submit"]:hover {
    background-color: #005177;
}

.profile-form .success,
.profile-form .error {
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.profile-form .success {
    background-color: #e6f4ea;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.profile-form .error {
    background-color: #fce4e4;
    color: #d32f2f;
    border: 1px solid #ef9a9a;
}

/* Responsive Design */
@media (max-width: 600px) {
    .edit-profile-container {
        margin: 20px;
        padding: 15px;
    }

    .edit-profile-container h2 {
        font-size: 24px;
    }

    .profile-form input[type="submit"] {
        width: 100%;
        text-align: center;
    }
}