body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #000;
}

.button {
    display: inline-block;
    background-color: #007bff; 
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 20px; 
    font-size: 1em;
    transition: background-color 0.3s ease;
    cursor: pointer; 
}

.button:hover {
    background-color: #0056b3; 
}

.thank-you-page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh; 
    text-align: center;
}

.thank-you-page .logo-container {
    margin-bottom: 20px;
}

.thank-you-page .logo {
    height: 80px;
    margin: 0 10px;
    display: inline-block; 
}

.thank-you-page h1 {
    color: #ffcc00;
    font-size: 3em; 
    margin-bottom: 0.25em;
    font-weight: bold;
}

.thank-you-page h2 {
    color: #333;
    font-size: 2em; 
    margin-bottom: 2em;
}




.signup-container {
    display: flex;
    flex-direction: row-reverse;
    height: 100%;
}

.form-container {
    flex-basis: 40%;
    background-color: #fff;
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-container {
    flex-basis: 60%; 
    background-image: url('oly-background-0.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.background-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    max-width: 150px;
    height: auto; 
}

.background-logo img {
    width: 100%; 
    height: auto; 
}


header .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .logo {
    height: auto;
    display: block;
    margin: 0 10px;
}

header .aiscout-logo {
    width: 180px;
}

header .oly-logo {
    width: 180px;
}

header h2 {
    font-size: 1.5em;
    margin-top: 0;
    text-align: center;
}

.section h3 {
    border-bottom: 1px solid #aaa;
    padding-bottom: 0.5em;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="password"],
select {
    width: 100%;
    padding: 0.5em;
    margin: 0.5em 0;
    background: #f8f8f8;
    border: 1px solid #ddd;
    color: #000;
    border-radius: 4px;
    box-sizing: border-box;
}

.radio-buttons,
.checkbox {
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.radio-buttons {
    margin: 1em 0;
}

.radio-buttons input[type="radio"] {
    margin-right: 0.5em;
}

.radio-buttons label {
    margin-right: 2em;
}

.checkbox {
    display: block;
    margin: 1em 0;
}

.checkbox input[type="checkbox"] {
    margin-right: 0.5em;
}

a {
    color: #49a6e9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    width: 100%;
    padding: 1em;
    background-color: #49a6e9;
    border: none;
    color: white;
    font-size: 1em;
    cursor: pointer;
    margin-top: 1em;
    border-radius: 4px;
    display: block;
}

button:hover {
    background-color: #3691cc;
}

p {
    margin: 0.5em 0;
}

.thank-you-container {
    text-align: center;
    padding: 20px;
}

.thank-you-container h1 {
    font-size: 2em;
    color: #333;
}

.thank-you-container p {
    font-size: 1em;
    margin-bottom: 20px;
}

.return-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #49a6e9;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.return-button:hover {
    background-color: #3691cc;
}
