body.public {
  background: #f8fafc;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #1a2b4c;
  line-height: 1.5; }

.payment-container {
  max-width: 440px;
  margin: 30px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: 32px;
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease; }
  .payment-container:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }

.payment-logo {
  height: 48px;
  margin-bottom: 16px;
  transition: transform 0.3s ease; }
  .payment-logo:hover {
    transform: scale(1.05); }

.payment-title {
  color: #1a2b4c;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em; }

.payment-desc {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.5; }

.form-label {
  font-weight: 600;
  color: #475569;
  font-size: 14px;
  margin-bottom: 6px;
  display: block; }

.form-control {
  height: 42px;
  border-radius: 6px;
  border: 1.5px solid #cbd5e1;
  transition: all 0.2s ease;
  font-size: 15px;
  padding: 8px 12px;
  width: 100%;
  background-color: #fff; }
  .form-control:hover {
    border-color: #3b82f6; }
  .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
    outline: none; }
  .form-control::placeholder {
    color: #64748b;
    opacity: 0.7; }

.btn {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  width: 100%; }
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease; }
  .btn:hover {
    transform: translateY(-1px); }
    .btn:hover::before {
      transform: translateX(100%); }
  .btn:active {
    transform: translateY(1px); }
  .btn:focus {
    outline: none; }

.btn-success {
  background-color: #059669;
  color: #fff; }
  .btn-success:hover {
    background: #047857;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2); }
  .btn-success:active {
    background: #065f46; }
  .btn-success:focus {
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.3); }

.btn-primary {
  background-color: #3b82f6;
  color: #fff; }
  .btn-primary:hover {
    background: #2372f5;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2); }
  .btn-primary:active {
    background: #0b63f3; }
  .btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3); }

.alert {
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5; }

.alert-success {
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-left: 4px solid #059669;
  color: #065f46; }

.alert-danger {
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
  border-left: 4px solid #dc2626;
  color: #991b1b; }

#error-messages {
  margin: 0 0 24px;
  padding: 12px 16px;
  border-radius: 6px;
  border-left: 4px solid #dc2626;
  background-color: #fef2f2;
  display: none; }
  #error-messages:not(:empty) {
    display: block; }
  #error-messages div {
    color: #991b1b;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px; }
    #error-messages div:last-child {
      margin-bottom: 0; }

.status-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px; }
  .status-icon.success {
    color: #059669; }
  .status-icon.error {
    color: #dc2626; }

.text-center {
  text-align: center; }

.mb-3 {
  margin-bottom: 20px; }

.required-asterisk {
  color: #dc2626;
  font-weight: 500;
  margin-left: 1px;
  font-size: 13px; }

/*# sourceMappingURL=payment_common.css.map */
