* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-image: url("bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  
  .login-container {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease;
  }
  
  .login-container:hover {
    transform: scale(1.01);
  }
  
  .login-container h2 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    color: #d63384;
  }
  
  .login-container .logo {
    display: block;
    margin: 0 auto 25px;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d63384;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: white;
  }
  
  
  
  .form-group {
    position: relative;
    margin-bottom: 22px;
  }
  
  .form-group input {
    width: 100%;
    padding: 12px 40px 12px 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.3s;
  }
  
  .form-group input:focus {
    border-color: #d63384;
    outline: none;
  }
  
  .form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
  }
  
  .btn {
    width: 100%;
    padding: 14px;
    background-color: #d63384;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  btn:hover {
    background-color: #c31b6c;
  }
  
  .extra-links {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: #555;
  }
  
  .extra-links a {
    color: #d63384;
    text-decoration: none;
    font-weight: 500;
  }
  
  .extra-links a:hover {
    text-decoration: underline;
  }
  
  .extra-links a:hover {
    text-decoration: underline;
  }
  
