/* styles.css */

/* Full page setup */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url('https://wallpapers.com/images/hd/vrchat-the-row-1t02wgawbbw4qdjp.jpg') no-repeat center center fixed;
    background-size: cover;
  }
  
  /* Overlay to create a blurred effect */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: -1;
  }
  
  /* Centered container for content */
  .container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Header styles */
  header h1 {
    font-size: 2.5em;
    color: #fff;
    margin: 0;
    padding-bottom: 10px;
  }
  
  header p {
    font-size: 1.2em;
    color: #eee;
  }
  
  /* Login section */
  .login-section {
    margin-top: 20px;
  }
  
  /* Glass card styling */
  .glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  /* Button styling */
  .login-button {
    display: inline-block;
    background: #7289da;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    margin-top: 20px;
    transition: background 0.3s ease;
  }
  
  .login-button:hover {
    background: #5a6fca;
  }
  