body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.header {
    background-color: #343a40;
    color: white;
    padding: 10px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corner-image {
    width: 60px; /* Increased width */
    height: 60px; /* Increased height */
    margin-right: 10px; /* Space between the image and the header text */
}

.container {
    max-width: 100%;
    width: 90%;
    margin: 20px auto;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.top-image {
    display: block;
    margin: 0 auto 20px;
    max-width: 50%;
    width: 50%;  /* Set a fixed maximum width */
    height: auto;
    border-radius: 10px;
}

.description {
    text-align: center;
    margin-bottom: 20px;
    color: #28a745;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #218838;
}

.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: auto; /* Ensure footer stays at the bottom */
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }
    
    button {
        padding: 12px;
        font-size: 18px;
    }

    .top-image {
        width: 80%;  /* Adjust width for smaller screens */
    }

    .corner-image {
        width: 50px; /* Adjusted width for smaller screens */
        height: 50px; /* Adjusted height for smaller screens */
    }
}
