/* === Font === */
@font-face {
    font-family: 'Futura Bold';
    src: url('./Futura.ttc') format('truetype');
    font-weight: bold;
  }
  
  /* === Global Styles === */
  * {
    font-family: 'Futura Bold', sans-serif;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    background-color: #c2c2c2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow-x: hidden;
  }
  
  /* === Card Container === */
  .card-container {
    background-color: #ebebeb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.75);
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
  }
  
  /* === Form === */
  #form-title {
    display: flex;
    flex-direction: column;
    font-weight: bold;
  }


  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  label {
    text-align: left;
    font-weight: bold;
    font-size: 0.95rem;
  }
  
  input {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    background-color: #ff424d;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #e63946;
  }
  
  #error {
    color: red;
    margin-top: 0.5rem;
  }
  
  /* === Back Link === */
  a {
    display: inline-block;
    margin-top: 1rem;
    color: #555;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* === Mobile Responsiveness === */
  @media (max-width: 768px) {
    body {
      padding: 1rem;
      align-items: flex-start;
    }
  
    .card-container {
      margin-top: 2rem;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: none;
    }
  
    button {
      font-size: 0.95rem;
      padding: 0.65rem 1rem;
    }
  }  

  .forgot-password-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;  /* Smaller font size */
    color: #007bff;  /* Link color */
    text-decoration: none;
  }
  
  .forgot-password-link:hover {
    text-decoration: underline;
  }

  .forgot-to-sign-up {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;  /* Smaller font size */
    color: #007bff;  /* Link color */
    text-decoration: none;
  }
  
  .forgot-to-sign-up:hover {
    text-decoration: underline;
  }