 * {
      box-sizing: border-box;
    }
    body {
      background-image: url('/assets/backgrounds/Sprinkle.svg');
      font-family: 'Arial', sans-serif;
      background-color: #fdf0ff;
      margin: 0;
      flex-direction: column;
      align-items: center;
    }
    .container {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      max-width: 450px;
      width: 100%;
      margin: 100px; 
    }
    img.logo {
      width: 120px;
      margin-bottom: 1rem;
    }
    h1 {
      color: #333;
      margin-bottom: 1rem;
      text-align: center;
    }
    .tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 1rem;
      border-bottom: 2px solid #ccc;
    }
    .tabs button {
      flex: 1;
      background: none;
      border: none;
      padding: 10px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s, border-bottom 0.3s;
      border-bottom: 3px solid transparent;
    }
    .tabs button:hover {
      background-color: #eee;
    }
    .tabs button.active-tab {
      border-bottom: 3px solid #2196F3;
      font-weight: bold;
      background-color: #eaf4ff;
    }
    .tab {
      display: none;
    }
    .tab.active {
      display: block;
    }
    form input {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
    }
    form button {
      width: 100%;
      padding: 10px;
      background-color: #4CAF50;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    form button:hover {
      background-color: #45a049;
    }
    #status {
      margin-top: 1rem;
      font-weight: bold;
      color: #555;
      text-align: center;
    }
    #logout-btn {
      margin-top: 0.5rem;
      background-color: #f44336;
      display: none;
    }
    @media (max-width: 480px) {

      .container {
        padding: 15px;
      }
    }
  #message {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #333;
}
.tab {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.tab.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}