* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: #f9f9f9;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.password-section {
  width: 100%;
  max-width: 500px;
}

.password-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-container h3 {
  font-size: 20px;
  margin-bottom: 25px;
  text-align: center;
}

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

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.required {
  color: red;
}

input[type=password] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

input[type=password]:focus {
  border-color: #3b82f6;
  outline: none;
}

.button-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cancel-btn,
.update-btn {
  flex: 1;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid #3b82f6;
  transition: all 0.3s ease;
}

.cancel-btn {
  background-color: #fff;
  color: #3b82f6;
}

.cancel-btn:hover {
  background-color: #f0f4ff;
}

.update-btn {
  background-color: #3b82f6;
  color: #fff;
  border: none;
}

.update-btn:hover {
  background-color: #2563eb;
}

/* Responsive */
@media (max-width: 500px) {
  .form-container {
    padding: 20px;
  }
  .password-section h2 {
    font-size: 20px;
    text-align: center;
  }
  .form-container h3 {
    font-size: 18px;
  }
  .cancel-btn,
  .update-btn {
    font-size: 14px;
  }
}
.error-message {
  color: red;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}/*# sourceMappingURL=change-password-one.css.map */