/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .form-container {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
  }
  
  h2 {
    margin-bottom: 20px;
    color: #333333;
  }
  
  .input-group {
    margin-bottom: 15px;
    text-align: left;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555555;
  }
  
  input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
  }
  
  input:focus {
    border-color: #4b208c;
    outline: none;
  }
  
  .btn {
    width: 100%;
    padding: 10px;
    background-color: #4b208c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #371e71;
  }
  
  .error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    display: none;
  }
  
  .switch-page {
    margin-top: 15px;
    font-size: 14px;
  }
  
  .switch-page a {
    color: #4b208c;
    text-decoration: none;
  }
  
  .switch-page a:hover {
    text-decoration: underline;
  }