﻿/**
 * أنماط نافذة تغيير كلمة المرور
 */

.password-change-modal {
  display: none;
  position: fixed;
  z-index: 1300;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  direction: rtl;
}

.password-change-modal.show {
  display: block;
}

.password-change-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.password-change-title {
  color: #00a59a;
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.password-change-form .form-group {
  margin-bottom: 20px;
}

.password-change-input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  direction: rtl;
}

.password-change-btn {
  background-color: #00a59a;
  color: white;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.password-change-btn:hover {
  background-color: #008e85;
}

.password-change-close {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #888;
  font-size: var(--font-2xl);
  cursor: pointer;
}

