﻿.card-password {
  background: #ffffff;
  padding: 40px;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 400px;
  text-align: center;
  margin-inline: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.icon-container {
  background: #f0f0f0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.icon-container::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 12px;
  height: 12px;
  background: #eb8333;
  border-radius: 50%;
}

.h2 {
  color: #333333;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.p {
  color: #666666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.form-group {
  text-align: left;
  margin-bottom: 25px;
}

.label-password {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: #666666;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.input-password {
  width: 100% !important;
  padding: 20px 15px !important;
  border-radius: 4px !important;
  color: #333333 !important;
  box-sizing: border-box !important;
  font-size: 16px !important;
}

.error-message {
  color: #c02b0a;
  font-size: 13px;
  margin-top: 8px;
  font-weight: 500;
}

.btn-password {
  width: 100% !important;
  padding: 12px !important;
  border: none !important;
  border-radius: 4px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  font-size: 14px !important;
  transition: all 0.2s ease;
  margin-bottom: 15px !important;
}

.btn-primary {
  background: var(--primary1);
  color: #ffffff;
}

.btn-secondary {
  background: #dfe3e8;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}