/* style.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff; /* Light Cyan background */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .login-container {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    width: 300px; /* Adjust the width as needed */
    height: 300px; /* Adjust the height as needed */
    margin-bottom: 20px;
    background-image: url('https://cdn.discordapp.com/attachments/800405165176782880/1183573664113893507/image.png?ex=6588d3df&is=65765edf&hm=ca43349439b013228c90314970e803bfeaa4fe7f9d043ede7bed7788bd8d956e&'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  h1 {
    color: #008080; /* Teal color for header */
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 10px;
    color: #008080; /* Teal color for labels */
  }
  
  input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 15px;
    border: 1px solid #008080; /* Teal color border */
    border-radius: 5px;
  }
  
  button {
    background-color: #008080; /* Teal color for button */
    color: #fff; /* White text color */
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  button:hover {
    background-color: #006666; /* Darker Teal on hover */
  }
  
  .extra-options {
    margin-top: 20px;
  }
  
  .forgot-password {
    color: #008080; /* Teal color for link */
    margin-right: 10px;
    text-decoration: none;
  }
  
  .forgot-password:hover {
    text-decoration: underline;
  }
  
  