body {
    font-family: Arial, sans-serif;
    background-image: url(school.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    backdrop-filter: blur(2px); /* Apply blur effect to the background */
}


.container {
    max-width: 730px;
    margin: 20px auto;
    background-color: #e6ffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
    font-weight: bold
}
h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
    font-weight: bold
}
h4 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
    font-weight: bold
}
label {
    font-weight: bold;
    color: #000000;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #000000;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.form-check-input {
    margin-right: 5px;
}

.form-check-label {
    color: #000000;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}