/* Modal Header Styling */
.tharsos-change-password-header {
    background-color: #C01826; /* Red header background */
    color: white; /* White text */
    padding: 15px;
    border: none; /* Remove any white border */
    border-top-left-radius: 10px; /* Rounded corners */
    border-top-right-radius: 10px; /* Rounded corners */
    margin: 0; /* Ensure no margin */
    box-shadow: none; /* Remove any shadow around */
    border-radius: 10px 10px 0 0; /* Ensure top corners are rounded */
}

/* Ensure modal content fits properly */
.tharsos-change-password-content {
    margin: 0;
    padding: 0;
    border-radius: 10px 10px 0 0; /* Only top corners rounded */
    border: none; /* Ensure there's no border around content */
    box-shadow: none; /* Ensure there's no shadow */
}

/* Modal Title Styling */
.tharsos-change-password-title {
    font-weight: bold;
    font-size: 18px;
    margin: 0; /* Ensure no margin */
}

/* Close Button Styling */
.tharsos-change-password-btn-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
}

/* Input Field Styling */
.tharsos-change-password-input {
    border: 1px solid #C01826; /* Red border */
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Input Error Styling */
.tharsos-change-password-error {
    color: #C01826;
}

/* Modal Body Styling */
.tharsos-change-password-body {
    padding: 20px;
}

/* Modal Content */
.tharsos-change-password-content {
    border-radius: 20px 20px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    margin: 0;
    padding: 0;
}

/* Button Styling for AGGIORNA PASSWORD */
.tharsos-aggiorna-password-button {
    width: 260px;
    height: 45px;
    background-image: url('/build/images/bottoni/aggiorna-password-no-selected-button.png');
    background-size: cover;
    background-position: center;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

/* Hover effect for button */
.tharsos-aggiorna-password-button:hover {
    width: 260px;
    height: 45px;
    background-image: url('/build/images/bottoni/aggiorna-password-selected-button.png');
    background-size: cover;
    background-position: center;
    background-color: transparent;
    cursor: pointer;
    border: none;
}

/* Container for centering the button */
.tharsos-change-password-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
