body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
}

.fill-data {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-family: 'Rubik';
    width: 95%;
    margin: 0 auto;
  }

  .fill-data .form-container {
    width: 100%;
    max-width: 400px;
  }

  .fill-data .form-title {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
  }

  .fill-data .form-subtitle {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
  }

  .fill-data .form-group {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .fill-data .form-control {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 14px 12px 14px 12px;
    height: 50px;
  }

  .fill-data .form-label {
    position: absolute;
    top: 14px;
    left: 12px;
    color: #777;
    pointer-events: none;
    transition: all 0.2s ease;
    background-color: white;
    padding: 0 4px;
  }

  .fill-data .form-control:focus + .form-label,
  .form-control:not(:placeholder-shown) + .form-label {
    top: -8px;
    left: 8px;
    font-size: 12px;
    color: #003366;
  }

  .fill-data .btn-primary {
    background-color: #003366;
    border: none;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
  }

  .fill-data .btn-primary:hover {
    background-color: #002244;
  }

  .fill-data .verification-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }

  .fill-data .verification-title {
    font-weight: bold;
    font-size: 18px;
  }

  .fill-data .verification-subtitle {
    font-size: 12px;
    color: #777;
    margin-bottom: 20px;
  }

  .fill-data .option-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px 16px;
    background-color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    cursor: pointer;
  }

  .fill-data .option-button i {
    font-size: 18px;
    color: #003366;
  }

  .fill-data .option-button:hover {
    background-color: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .fill-data .option-button.active {
    background-color: #003366;
    color: white;
    border-color: #003366;
  }

  .fill-data .option-button.active i {
    color: white;
  }

  .fill-data .btn-primary:disabled {
    background-color: #999;
    cursor: not-allowed;
  }

  .fill-data .verify-container {
    max-width: 400px;
    width: 100%;
    text-align: center;
  }

  .fill-data .verify-icon {
    width: 60px;
    height: 60px;
    background-color: #003366;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
  }

  .fill-data .verify-title {
    font-weight: bold;
    font-size: 18px;
  }

  .fill-data .verify-subtext {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
  }

  .fill-data .verify-number {
    font-weight: 600;
    font-size: 14px;
  }

  .fill-data .change-number {
    font-size: 13px;
    color: #007bff;
    cursor: pointer;
    margin-bottom: 20px;
    display: inline-block;
  }

  .fill-data .code-inputs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 20px 0 10px;
  }

  .fill-data .code-inputs input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    transition: border 0.3s;
  }

  .fill-data .code-inputs input:focus {
    border-color: #003366;
    outline: none;
  }

  .fill-data .code-inputs input.error {
    border-color: red;
  }

  .fill-data .timer {
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
  }

  .fill-data .error-message {
    font-size: 13px;
    color: red;
    margin-top: -5px;
    margin-bottom: 15px;
    display: none;
  }
/* Header */
.header {
    background: #0047AB;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.header img {
    width: 100px;
}

.date {
  padding: 8px;
  border: 2px solid #1700ac;
  border-radius: 10px;
  text-align: center;
}

.bg-success {
  background-color: #54bd31 !important;
}
