body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #faf9f7;
    background-size: cover;
    background-position: center;
  }
  
  .login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
  }
  
  .login-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
  }
  
  .login-box h1 {
    margin-bottom: 10px;
    font-size: 28px;
    color: #333;
  }
  
  .login-box p {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
  }
  
  .styled-button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .styled-button:hover {
    background-color: #ff3d3d;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  }
  
  .response-message {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
  }
  