
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
  }
  
  body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #46013b, #270180);
  }
  
  
 
  
  
  .login-card {
    background: rgba(255, 255, 255, 0.968);
    padding: 2rem;
    border-radius: 20px;
    width: 350px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-align: center;
  }
  
  .logo {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
  }
  
  .title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000;
  }
  
  .subtitle {
    font-size: 0.9rem;
    color: #000000;
    margin: 0.5rem 0 1.5rem;
  }
  
  
  form input {
    width: 100%;
    padding: 12px 14px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 1rem;
  }
  
  form input:focus {
    outline: none;
    border-color: #6a11cb;
    box-shadow: 0 0 5px rgba(106,17,203,0.4);
  }
  
  
  form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
  }
  
  form button:hover {
    opacity: 0.9;
  }
  
  
  .signup {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #555;
  }
  
  .signup a {
    color: #2575fc;
    text-decoration: none;
    font-weight: bold;
  }
  
  .signup a:hover {
    text-decoration: underline;
  }
  .container {
    max-width: 400px;
    margin: 80px auto;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  h1 {
    margin-bottom: 10px;
  }
  
 
  
  .form input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
  }
  
  .btn {
    width: 100%;
    padding: 12px;
    background: #4e54c8;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #373b9f;
  }
  
  #message {
    margin-top: 15px;
    font-size: 14px;
  }