body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.background {
    background-image: url('background-image.jpg'); 
    background-size: cover;
    background-attachment: fixed; 
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
	font-weight: bold;
}

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

input[type="text"],
input[type="file"],
input[type="submit"] {
    width: 65%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
		font-weight: bold;
    }

    label,
    input[type="text"],
    input[type="file"],
    input[type="submit"] {
        font-size: 16px;
		font-weight: bold;
    }
}
/* CSS to customize the button size and height */
.custom-button {
    padding: 10px 20px; /* Adjust padding to control button size */
    font-size: 16px; /* Adjust font size as needed */
    height: 40px; /* Adjust the button height */
    background-color: #007bff; /* Button background color */
    color: #fff; /* Button text color */
    border: none; /* Remove button border */
    cursor: pointer;
    margin: 5px; /* Add margin to create space between buttons */
}

.custom-button:hover {
    background-color: #0056b3; /* Change color on hover */
}