/* Change Password Dialog Stylesheet */

.cpw-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10200;
    padding: 20px;
}

.cpw-modal-dialog {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cpw-body {
    padding: 22px 24px;
}

.cpw-field-group {
    margin-bottom: 14px;
}

.cpw-field-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}

.cpw-field-group input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    box-sizing: border-box;
    transition: border-color 0.25s ease;
    font-family: inherit;
}

.cpw-field-group input:focus {
    outline: none;
    border-color: #667eea;
}

.cpw-field-group input::placeholder {
    color: #bbb;
}

.cpw-button-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

/* Mobile full-screen handled by dialog-base.css */
