/* General body styles */
body {
    margin: 0;
    padding-top: 60px;
    font-family: 'Alef', sans-serif;
    background-color: #EDEAE7;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Main content container */
.content-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    background-color: #EDEAE7;
    flex-grow: 1;
    /* This allows the content to grow and take available space */
}

.info-box {
    text-align: center;
    margin-bottom: 20px;
}

.info-box p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 5px;
}

/* Styles for the form container */
.form-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    align-items: right;
    text-align: right;
}


/* Centered heading styles */
.center {
    text-align: center;
    margin-top: 30px;
}

/* Remove bottom margin from the page */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
}