body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    box-sizing: border-box;
}

.banner {
    background-color: #00457c; /* Ayr Racecourse primary color */
    padding: 10px;
    border-radius: 8px 8px 0 0;
}

.banner img {
    max-width: 100%;
    height: auto;
}

h1 {
    color: #00457c; /* Ayr Racecourse primary color */
    margin-top: 20px;
    font-size: 1.5em;
}

p {
    color: #333;
    font-size: 1em;
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
    color: #00457c; /* Ayr Racecourse primary color */
    font-size: 1em;
}

input[type="text"], input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: #00457c; /* Ayr Racecourse primary color */
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

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

.disclaimer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #555;
}

a {
    color: #00457c; /* Ayr Racecourse primary color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.2em;
    }
    
    .container {
        padding: 10px;
    }

    input[type="submit"] {
        padding: 10px;
        font-size: 0.9em;
    }
}

