main{
    display: flex;
    background: linear-gradient(135deg, #7a0f1c, #3b060c);
    justify-content: center;
    gap:40px;
    padding: 15px;
}
section{
    background: #fff;
      border-radius: 18px;
      padding: 40px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
 section h2{
    margin-bottom: 24px;
      color: #7a0f1c;
    }

    section label {
      display: block;
      font-size: 0.85rem;
      margin-bottom: 6px;
      margin-top: 16px;
      color: #444;
    }

    section input {
      width: 100%;
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid #ddd;
      font-size: 0.95rem;
    }

    section input:focus {
      outline: none;
      border-color: #7a0f1c;
    }

    section button {
      margin-top: 24px;
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 10px;
      background: #7a0f1c;
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
    }