:root {
      --pink-accent: #e91e63;
      --white: #ffffff;
      --dark-text: #333333;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: "Segoe UI", Arial, sans-serif;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background: url("login.png") no-repeat center center fixed;
      background-size: cover;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.6);
    }

    .reset-box {
      position: relative;
      z-index: 2;
      width: 360px;
      padding: 40px;
      border-radius: 12px;
      background: var(--white);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      text-align: center;
    }

    .reset-box h1 {
      margin-bottom: 15px;
      font-size: 24px;
      font-weight: 600;
      color: var(--pink-accent);
    }

    .reset-box p {
      font-size: 14px;
      margin-bottom: 20px;
      color: var(--dark-text);
    }

    .reset-box label {
      display: block;
      text-align: left;
      margin-bottom: 6px;
      font-size: 14px;
      font-weight: 500;
      color: var(--pink-accent);
    }

    .reset-box input {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 14px;
    }

    .reset-box input:focus {
      outline: none;
      border: 1px solid var(--pink-accent);
      box-shadow: 0 0 6px rgba(233,30,99,0.3);
    }

    .reset-box button {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 8px;
      background: var(--pink-accent);
      color: var(--white);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 3px 6px rgba(233,30,99,0.3);
    }

    .reset-box button:hover {
      background: #c2185b;
    }

    .back-link {
      display: block;
      margin-top: 15px;
      font-size: 14px;
      text-decoration: none;
      color: var(--pink-accent);
      transition: 0.2s;
    }

    .back-link:hover {
      text-decoration: underline;
    }
