    body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 50px 0;
            display: flex;
            justify-content: center;
            background-image: url(./img/r4.jpg);
            background-repeat: no-repeat;
            background-size: cover;
        }

        form {
             background-image: url(./img/r5.jpg);
            padding: 30px 40px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            width: 400px;
            height: 600px;     
            overflow-y: auto;    
            color: white;
            font-size: 17px;
            box-sizing: content-box;

        }

        h1 {
            text-align: center;
            margin-bottom: 20px;
            color: white;
        }

        label {
            display: block;
            margin-top: 15px;
            margin-bottom: 5px;
            font-size: 16px;
        }

        input[type="text"],
        input[type="email"],
        input[type="date"],
        input[type="tel"],
        textarea,
        select {
            width: 100%;
            padding: 8px;
            border-radius: 5px;
            border: 1px solid #ccc;
            box-sizing: border-box;
            background-image: url(./img/r6.jpg);
             color: white;
        }
       select {
      background-color: black;
      }
        input[type="radio"] {
            margin-right: 5px;
        }

        textarea {
            height: 80px;
            
        }

        .gender-options {
            display: flex;
            gap: 20px;
            margin-top: 5px;
        }

        input[type="submit"],
        input[type="reset"] {
            padding: 10px 20px;
            border: none;
            background-color:rgb(61, 25, 95);
            color: white;
            border-radius: 5px;
            cursor: pointer;
            margin: 5px;
        }

        input[type="reset"] {
            background-color: #6c757d;
        }

        input[type="submit"]:hover,
        input[type="reset"]:hover {
            opacity: 0.9;
        }

       @media (max-width: 768px) {
    form {
        padding: 25px;
    }
}

@media (max-width: 411px) {
    body {
        padding: 20px;
        background-image: url(./img/r5.jpg);
    }

    form {
        padding: 20px;
    }

    h1 {
        font-size: 20px;
    }

    label,
    input,
    select,
    textarea {
        font-size: 14px;
    }
}
 .small-swal {
    width: 250px !important;
    padding: 10px !important;
    font-size: 14px;
  }
