body {
    font-family: Arial, sans-serif;
    background-image: url('../images/backgroundOrangeGradient.jpg');
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
  }
  
  .container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 420px;
    width: 100%;
    border-top: 5px solid #ff5a5f;
  }
  
  h2 {
    color: #702963;
  }
  
  input, button {
    font-size: 16px;
    padding: 12px;
    width: 100%;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  
  button {
    background-color: #ff5a5f;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #e14e51;
  }
  
  .google-btn {
    background-color: #4285F4;
  }
  
  .google-btn:hover {
    background-color: #357ae8;
  }
  