.alert-box {
  background-color: #2D528C;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  margin: 50px auto 20px auto;
  color: var(--white);
}

.alert-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--white);
}

.alert-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-primary-custom {
  background-color: var(--white);
  color: #2D528C;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: var(--font-family);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.2s, transform 0.1s;
  min-width: 180px;
}

.btn-primary-custom:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.btn-primary-custom i {
  font-size: 1.3rem;
}

@media (max-width: 576px) {
  .alert-box {
    padding: 2rem 1.5rem;
    margin: 40px 16px 20px;
  }

  .alert-title {
    font-size: 1.35rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-custom {
    width: 100%;
    max-width: 300px;
  }
}