  * {
      box-sizing: border-box;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    }

    body {
      margin: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgb(255, 7, 7);
    }

    .login-card {
      background: #ffffff;
      padding: 2.5rem 2rem;
      width: 100%;
      max-width: 360px;
      border-radius: 14px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      text-align: center;
    }

    .logo {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      background: #e0e4e8 url("https://via.placeholder.com/80") center / cover no-repeat;
    }

    img{
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      background: #e0e4e8 url("https://via.placeholder.com/80") center / cover no-repeat;
    }

    h1 {
      margin: 0 0 1.5rem;
      font-size: 1.4rem;
      color: #222;
      font-weight: 600;
    }

    .field {
      margin-bottom: 1rem;
      text-align: left;
    }

    label {
      display: block;
      margin-bottom: 0.3rem;
      font-size: 0.85rem;
      color: #555;
    }

    input {
      width: 100%;
      padding: 0.65rem 0.7rem;
      border-radius: 8px;
      border: 1px solid #d0d4d9;
      font-size: 0.95rem;
    }

    input:focus {
      outline: none;
      border-color: #5b8cff;
    }

    button {
      margin-top: 1rem;
      width: 100%;
      padding: 0.7rem;
      border-radius: 8px;
      border: none;
      background: green;
      color: #fff;
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
    }

    button:hover {
      background: greenyellow;
    }

    .footer-text {
      margin-top: 1.2rem;
      font-size: 0.8rem;
      color: #888;
    }

    a{
      color: white;
      text-decoration: none;
    }