* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Varela Round", sans-serif;
}

html, body {
    height: 100%;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden; 
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}


.banner {
    height: 170px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.banner img {
    width: 90%;
    height: 90%;
    object-fit: cover;
}


.blue-background {
    background-color: background-color: #e10004;;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
}

.form-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.embed-form {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border: none;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}


footer {
    background-color: #b42079;
    color: #fff;
    text-align: center;
    padding: 0 20px 20px 20px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}