﻿.activation-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #2E7CE4 0%, #4CAF50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

  .activation-page .container {
    /* Add these properties! */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .activation-page .activation-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    /* Remove flex from here unless you want internal centering */
  }

  .activation-page .loading-state, .activation-page .success-state, .activation-page .error-state {
    padding: 20px;
    align-items: center;
    /* Center content vertically and horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
  }

  .activation-page .success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 20px;
  }

  .activation-page .error-icon {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 20px;
  }

  .activation-page .action-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .activation-page .btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .activation-page .btn-primary {
    background: linear-gradient(135deg, #2E7CE4 0%, #4CAF50 100%);
    color: white;
  }

  .activation-page .btn-secondary {
    background: #6c757d;
    color: white;
  }

  .activation-page .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
