/* General styling for the page */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container styling */
.container {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Input fields styling */
.input-field {
    width: 90%;
    padding: 10px;
    margin: 20px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Button styling */
.create-btn, .submit-btn {
    background-color: #1560BD; /* Consistent blue color */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Header and footer styling */
.header, .footer {
    width: 100%;
    text-align: center;
    background-color: #1560BD;
    color: white;
    padding: 10px 0;
}

h1, h2 {
    font-size: 24px;
    margin: 0;
}

p {
    font-size: 18px;
    margin: 10px 0 20px 0;
}

/* Spacer to distribute the available space evenly */
.spacer {
    flex-grow: 1;
}
/* Style for the upload label */
.upload-label {
    display: block;
    text-align: left;
    color: grey;
    font-size: 14px;
    margin-bottom: 5px; /* Adds spacing between label and file input */
}