/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 20px;
    background: linear-gradient(135deg, #f4f4f4, #dfe9f3);
    color: #333;
}

/* Headings */
h2 {
    text-align: center;
    color: #273272;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

h3 {
    color: #007bff;
    font-size: 20px;
    margin-top: 20px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

/* Form Styling */
form {
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 25px;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Input Fields */
input, select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

input:focus, select:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

/* File Upload Styling */
input[type="file"] {
    padding: 6px;
    background: #fff;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: #273272;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
}

button:hover {
    background: #e70a0a;
    box-shadow: 0 4px 10px rgba(231, 10, 10, 0.3);
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    margin-top: 5px;
}

.styled-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    form {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    form {
        max-width: 80%;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    input, select, button {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    form {
        max-width: 90%;
        padding: 15px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 16px;
    }

    input, select, button {
        font-size: 14px;
        padding: 8px;
    }
}
