*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

 body {
      font-family: Arial, sans-serif;
      background-color: #0b2d46;
      color: #fff;
      display: flex;
      justify-content: center;
      padding: 40px;
    }

    .form-container {
      background-color: #08243a;
      padding: 2rem;
      border-radius: 15px;
      max-width: 400px;
      width: 100%;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
      margin: 2rem;
    }

    .form-container h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #fff;
    }

    label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;

    }

    input, select, textarea {
      width: 100%;
      padding: 10px 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 10px;
      background-color: #fff;
      color: #000;
      font-size: 16px;
      transition: border 0.3s ease, box-shadow 0.3s ease;
    }

    input:focus, select:focus, textarea:focus {
      border-color: #66afe9;
      outline: none;
      box-shadow: 0 0 5px rgba(102, 175, 233, 0.5);
    }

    button {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: bold;
      color: #fff;
      background: linear-gradient(to right, #b84ffe, #cc4db7);
      cursor: pointer;
      transition: background 0.3s ease;
    }

    button:hover {
      background: linear-gradient(to right, #370a8b, #e14ffe);
    }
  