/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styles */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  /* Login Container */
  .login-container {
    position: relative;
    width: 350px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    overflow: hidden; /* Ensures wave is clipped if it overflows */
  }
  
  /* Logo / Icon at the top */
  .logo {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .logo img {
    max-width: 80px;
    display: inline-block;
  }
  
  /* Form Group */
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
  }
  
  .form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus {
    border-color: #6c63ff; /* Focus color */
  }
  
  /* Login Button */
  .login-btn {
    width: 100%;
    padding: 12px;
    background: #6c63ff; /* Primary color for the button */
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 5px;
  }
  
  .login-btn:hover {
    background: #5952cc; /* Darken on hover */
  }
  
  /* Footer Text (Policy & Terms) */
  .footer-text {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    color: #666;
  }
  
  .footer-text a {
    color: #6c63ff;
    text-decoration: none;
  }
  
  .footer-text a:hover {
    text-decoration: underline;
  }
  
  /* Wave Shape at the Bottom 
     - Replace the background URL with your own wave image or an inline SVG. 
  */
  .wave {
    position: absolute;
    bottom: -40px; /* adjust if needed */
    left: 0;
    width: 100%;
    height: 80px; /* adjust if needed */
    background: url('wave.png') no-repeat center bottom;
    background-size: cover;
    pointer-events: none; /* so it doesn't interfere with clicks */
  }
  