/* ===== Register Page ===== */
.register-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 200px);
  padding: 30px 15px;
}

.register-card {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 53, 121, 0.10), 0 1.5px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.register-header {
  background: linear-gradient(135deg, #003579 0%, #0057b8 100%);
  padding: 32px 35px 28px;
  text-align: center;
}

.register-icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #ffffff;
}

.register-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
}

.register-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.register-body {
  padding: 28px 35px 32px;
}

.register-form-group {
  margin-bottom: 18px;
}

.register-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.register-label svg {
  color: #003579;
  flex-shrink: 0;
}

.register-input {
  width: 100%;
  height: 44px;
  border: 1.5px solid #dde4ed;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  color: #1a1a2e;
  background: #f8fafc;
  transition: all 0.2s ease;
  font-family: 'Inter', 'Poppins', sans-serif;
  box-sizing: border-box;
}

.register-input:focus {
  outline: none;
  border-color: #003579;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 53, 121, 0.08);
}

.register-input::placeholder {
  color: #94a3b8;
  font-size: 13px;
}

.register-input-wrapper {
  position: relative;
}

.register-input-pw {
  padding-right: 44px;
}

.register-pw-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.register-pw-toggle:hover {
  color: #003579;
}

.register-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.register-select option[disabled] {
  color: #94a3b8;
}

.register-row {
  display: flex;
  gap: 16px;
}

.register-col {
  flex: 1;
  min-width: 0;
}

.register-terms {
  margin: 22px 0 24px;
  padding: 14px 16px;
  background: #f1f5f9;
  border-radius: 10px;
}

.register-terms-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

.register-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #003579;
  flex-shrink: 0;
  cursor: pointer;
}

.register-terms-text {
  color: #475569;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.register-terms-link {
  color: #003579;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.register-terms-link:hover {
  color: #00264d;
}

.register-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background: #003579;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.register-btn-submit:hover:not(:disabled) {
  background: #00264d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 53, 121, 0.3);
}

.register-btn-submit:disabled {
  opacity: 0.85;
  cursor: not-allowed;
}

.register-btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.register-btn-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.register-spinner-svg {
  animation: register-spin 0.7s linear infinite;
}

@keyframes register-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.register-login-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #64748b;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.register-login-link a {
  color: #003579;
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}

.register-login-link a:hover {
  text-decoration: underline;
}

.register-error-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #dc2626;
  font-size: 13px;
}

.register-error-box svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.register-error-box .danger {
  color: #dc2626;
}

/* Register TC modal override */
.register-section + div.uk-modal .uk-modal-body,
.register-section + div.uk-modal .uk-modal-body .rd-content-form {
  max-width: 1080px !important;
  width: 100%;
}

.register-section + div.uk-modal .uk-modal-body .rd-content-form h2 + div {
  padding: 20px 25px 0px 25px;
}

@media screen and (max-width: 640px) {
  .register-row {
    flex-direction: column;
    gap: 0;
  }

  .register-card {
    border-radius: 12px;
  }

  .register-header {
    padding: 24px 20px 20px;
  }

  .register-body {
    padding: 20px 20px 24px;
  }

  .register-title {
    font-size: 19px;
  }

  .register-icon-circle {
    width: 52px;
    height: 52px;
  }

  .register-icon-circle svg {
    width: 28px;
    height: 28px;
  }

  .register-btn-submit {
    height: 44px;
    font-size: 14px;
  }
}

/* ===== Login Page ===== */
.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 200px);
  padding: 30px 15px;
}

.login-card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 53, 121, 0.10), 0 1.5px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.login-header {
  background: linear-gradient(135deg, #003579 0%, #0057b8 100%);
  padding: 32px 35px 28px;
  text-align: center;
}

.login-icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #ffffff;
}

.login-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
}

.login-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.login-body {
  padding: 28px 35px 32px;
}

.login-form-group {
  margin-bottom: 18px;
}

.login-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.login-label svg {
  color: #003579;
  flex-shrink: 0;
}

.login-input {
  width: 100%;
  height: 44px;
  border: 1.5px solid #dde4ed;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  color: #1a1a2e;
  background: #f8fafc;
  transition: all 0.2s ease;
  font-family: 'Inter', 'Poppins', sans-serif;
  box-sizing: border-box;
}

.login-input:focus {
  outline: none;
  border-color: #003579;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 53, 121, 0.08);
}

.login-input::placeholder {
  color: #94a3b8;
  font-size: 13px;
}

.login-input-wrapper {
  position: relative;
}

.login-input-pw {
  padding-right: 44px;
}

.login-pw-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.login-pw-toggle:hover {
  color: #003579;
}

.login-field-error {
  display: block;
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.login-forgot-row {
  text-align: right;
  margin-bottom: 24px;
}

.login-forgot-link {
  color: #003579;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Inter', 'Poppins', sans-serif;
  transition: color 0.2s;
}

.login-forgot-link:hover {
  color: #00264d;
  text-decoration: underline;
}

.login-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background: #003579;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.login-btn-submit:hover {
  background: #00264d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 53, 121, 0.3);
}

.login-btn-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background: #ffffff;
  color: #003579;
  border: 1.5px solid #003579;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  margin-top: 12px;
}

.login-btn-register:hover {
  background: #003579;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 53, 121, 0.2);
}

.login-divider {
  display: flex;
  align-items: center;
  margin: 16px 0;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.login-divider span {
  padding: 0 14px;
  color: #94a3b8;
  font-size: 13px;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.login-btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  background: transparent;
  color: #64748b;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

.login-btn-back:hover {
  background: #f1f5f9;
  color: #334155;
  border-color: #cbd5e1;
  text-decoration: none;
}

.cedula-confirm-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #fef3c7;
  border: 1.5px solid #f0c645;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.cedula-confirm-label {
  font-size: 13px;
  color: #7a6b2a;
  font-weight: 500;
  font-family: 'Inter', 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cedula-confirm-number {
  font-size: 26px;
  font-weight: 700;
  color: #5c5019;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1.5px;
}

.login-error-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #dc2626;
  font-size: 13px;
}

.login-error-box:not(:has(span:not(:empty), .danger:not(:empty))) {
  display: none;
}

.login-error-box svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.login-error-box .danger {
  color: #dc2626;
}

@media screen and (max-width: 480px) {
  .login-card {
    border-radius: 12px;
  }

  .login-header {
    padding: 24px 20px 20px;
  }

  .login-body {
    padding: 20px 20px 24px;
  }

  .login-title {
    font-size: 19px;
  }

  .login-icon-circle {
    width: 52px;
    height: 52px;
  }

  .login-icon-circle svg {
    width: 28px;
    height: 28px;
  }

  .login-btn-submit,
  .login-btn-register {
    height: 44px;
    font-size: 14px;
  }
}

/* ===== Inline Warning Box (replaces SweetAlert) ===== */
.register-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 18px;
  color: #b45309;
  font-size: 13px;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.register-warning-box svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #d97706;
}

/* ===== Reset Password Error Box ===== */
.reset-error-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  color: #dc2626;
  font-size: 13px;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.reset-error-box svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Forgot Password Page ===== */
.forgot-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 200px);
  padding: 30px 15px;
}

.forgot-card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 53, 121, 0.10), 0 1.5px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.forgot-header {
  background: linear-gradient(135deg, #003579 0%, #0057b8 100%);
  padding: 32px 35px 28px;
  text-align: center;
}

.forgot-icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #ffffff;
}

.forgot-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
}

.forgot-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.forgot-body {
  padding: 28px 35px 32px;
}

.forgot-form-group {
  margin-bottom: 24px;
}

.forgot-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.forgot-label svg {
  color: #003579;
  flex-shrink: 0;
}

.forgot-input {
  width: 100%;
  height: 44px;
  border: 1.5px solid #dde4ed;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  color: #1a1a2e;
  background: #f8fafc;
  transition: all 0.2s ease;
  font-family: 'Inter', 'Poppins', sans-serif;
  box-sizing: border-box;
}

.forgot-input:focus {
  outline: none;
  border-color: #003579;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 53, 121, 0.08);
}

.forgot-input::placeholder {
  color: #94a3b8;
  font-size: 13px;
}

.forgot-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background: #003579;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.forgot-btn-submit:hover {
  background: #00264d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 53, 121, 0.3);
}

.forgot-btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  background: transparent;
  color: #64748b;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  margin-top: 12px;
}

.forgot-btn-back:hover {
  background: #f1f5f9;
  color: #334155;
  border-color: #cbd5e1;
  text-decoration: none;
}

/* ===== Forgot Password Confirmation ===== */
.forgot-confirm-icon-wrapper {
  background: linear-gradient(135deg, #003579 0%, #0057b8 100%);
  padding: 40px 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.forgot-confirm-icon-circle {
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.forgot-confirm-body {
  padding: 30px 35px 35px;
  text-align: center;
}

.forgot-confirm-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.forgot-confirm-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 16px 0 8px;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.forgot-confirm-subtitle {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 28px;
  line-height: 1.6;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.forgot-confirm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #003579;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 0 32px;
  height: 48px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.forgot-confirm-btn:hover {
  background: #00264d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 53, 121, 0.3);
  text-decoration: none;
}

@media screen and (max-width: 480px) {
  .forgot-card {
    border-radius: 12px;
  }

  .forgot-header {
    padding: 24px 20px 20px;
  }

  .forgot-body {
    padding: 20px 20px 24px;
  }

  .forgot-title,
  .forgot-confirm-title {
    font-size: 19px;
  }

  .forgot-icon-circle {
    width: 52px;
    height: 52px;
  }

  .forgot-icon-circle svg {
    width: 28px;
    height: 28px;
  }

  .forgot-confirm-body {
    padding: 24px 20px 28px;
  }

  .forgot-confirm-icon-wrapper {
    padding: 30px 0 24px;
  }

  .forgot-confirm-icon-circle {
    width: 72px;
    height: 72px;
  }

  .forgot-confirm-icon-circle svg {
    width: 36px;
    height: 36px;
  }

  .forgot-confirm-btn {
    width: 100%;
    justify-content: center;
  }

  .forgot-btn-submit {
    height: 44px;
    font-size: 14px;
  }
}

/* ===== Registration Confirmation ===== */
.confirm-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 200px);
  padding: 30px 15px;
}

.confirm-card {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 53, 121, 0.10), 0 1.5px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.confirm-icon-wrapper {
  background: linear-gradient(135deg, #003579 0%, #0057b8 100%);
  padding: 40px 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.confirm-icon-circle {
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.confirm-body {
  padding: 30px 35px 35px;
  text-align: center;
}

.confirm-badge {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.confirm-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 16px 0 8px;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.confirm-subtitle {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 24px;
  line-height: 1.6;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.confirm-email-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f9ff;
  color: #0369a1;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.confirm-email-hint svg {
  flex-shrink: 0;
}

.confirm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #003579;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 0 32px;
  height: 48px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.confirm-btn:hover {
  background: #00264d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 53, 121, 0.3);
  text-decoration: none;
}

@media screen and (max-width: 480px) {
  .confirm-card {
    border-radius: 12px;
  }

  .confirm-body {
    padding: 24px 20px 28px;
  }

  .confirm-icon-wrapper {
    padding: 30px 0 24px;
  }

  .confirm-icon-circle {
    width: 72px;
    height: 72px;
  }

  .confirm-icon-circle svg {
    width: 36px;
    height: 36px;
  }

  .confirm-title {
    font-size: 19px;
  }

  .confirm-btn {
    width: 100%;
    justify-content: center;
  }

  .confirm-email-hint {
    font-size: 12px;
    padding: 8px 14px;
  }
}
