* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
    }

    body {
      min-height: 100vh;
      background: #f3f4f6;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .logo, .logo img{
        height: 300px;
        width: 100%;
        max-width: 380px;
        background: aqua;
    }


    .login-box {
      width: 100%;
      max-width: 380px;
      background: black;
      padding: 32px;
      border-top-left-radius: 0px !important;
      
      border-top-right-radius: 0px !important;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .login-box h1 {
      text-align: center;
      margin-bottom: 24px;
      font-size: 28px;
      color: white;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-size: 14px;
      color: white;
    }

    .form-group input {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #d1d5db;
      border-radius: 10px;
      font-size: 16px;
      outline: none;
    }

    .form-group input:focus {
      border-color: #2563eb;
    }

    .login-btn {
      width: 100%;
      padding: 12px;
      margin-top: 8px;
      border: none;
      border-radius: 10px;
      background: white;
      color: black;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
    }

    .login-btn:hover {
      background: black;
      color: white;
      border: 1px solid white;
    }

    .hint {
      margin-top: 16px;
      text-align: center;
      font-size: 14px;
      color: #6b7280;
    }