/* General Reset */
  
  /* Login Container */
  .login-container {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;

    position: relative;
    width: 90%;
    align-items: center;
  }
  
  .login-container h1 {
    font-size: 3vh;
    margin-bottom: 1rem;
    color: #333333;
    text-align: center;
  }
  
  /* Form Styles */
  form {
    font-size: 3vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

                 
  
  .form-group {
    margin-bottom: 1rem;
  }

  .form-group select{
    font-size: 3vh;}      
       
  label {
    font-size: 3vh;
    margin-bottom: 0.5rem;
    display: block;
    color: #555555;
  }
  
  input[type="email"], 
  input[type="password"] {
    padding: 0.75rem;
    font-size: 3vh;
    border: 1px solid #cccccc;
    border-radius: 5px;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  input[type="email"]:focus, 
  input[type="password"]:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 5px rgba(108, 99, 255, 0.3);
  }
  
  button {
    padding: 0.75rem;
    font-size: 3vh;
    background-color: #6c63ff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
  }
  
  button:hover {
    background-color: #5849d8;
  }
  
  /* Link Styles */
  p {
    font-size: 3vh;
    color: #555555;
    text-align: center;
  }
  
  a {
    color: #6c63ff;
    text-decoration: none;
    transition: color 0.3s ease;
    
  }
  
  a:hover {
    color: #5849d8;
    
  }
  