@charset "utf-8";

<style>
    :root {
      --primary-blue: #007bff;     /* Main brand blue */
      --light-blue: #e9f3ff;       /* Soft background */
      --text-color: #333;
      --white: #ffffff;
    }

    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      background-color: var(--light-blue);
      color: var(--text-color);
      margin: 0;
      padding: 40px 15px;
    }

    form {
      background-color: var(--white);
      padding: 30px;
      border-radius: 12px;
      max-width: 600px;
      margin: 0 auto;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      border-top: 6px solid var(--primary-blue);
    }

    h2 {
      text-align: center;
      color: var(--primary-blue);
      margin-bottom: 25px;
    }

    label {
      font-weight: 600;
      margin-top: 15px;
      display: block;
    }

    input, textarea {
      width: 100%;
      padding: 12px;
      margin-top: 6px;
      border: 1px solid #cfd8e3;
      border-radius: 8px;
      font-size: 15px;
      transition: all 0.2s ease;
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: var(--primary-blue);
      box-shadow: 0 0 4px rgba(0,123,255,0.3);
    }

    button {
      background-color: var(--primary-blue);
      color: var(--white);
      border: none;
      padding: 12px 20px;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      margin-top: 15px;
      width: 100%;
    }

    button:hover {
      background-color: #0056b3;
    }

    .success, .error {
      text-align: center;
      margin-top: 20px;
      font-weight: 600;
    }

    .success {
      color: green;
    }

    .error {
      color: red;
    }

    @media (max-width: 600px) {
      form {
        padding: 20px;
      }
    }
  </style>
