* {
    padding:0;
    margin:0;
}

.header{
    background-color: #22b573;
    color: white;
    width: 100%;
    height:70px;
    display: flex;
    grid-area: hd;
    display:flex;
    align-items: center;
}

.logo{
    width: auto;
    height: 70px;
    background-color: #22b573;
}

.section{
    color: #22b573;
    margin-top: 50px;
}

.sticky {
    position: sticky;
    top: 0;
    left: 0;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.imageContainer {
    position: relative;
    text-align: center;
    color: white;
    z-index: -1;
}

.image-centre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.paddedText5 {
    padding: 5px;
}

.backGroundImage {
    top: 70px;
    width: 100%;
    height: auto;
}

.font {
    font-family: Helvetica, Ariel;
    top: 50%;
}

.formbody {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 24px;
    justify-content: center;
    align-items: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.forminput {
    width: 100%;
    background: transparent;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #22b573;
    outline: none;
}

.forminput:focus {
    outline:#105134
}

.formbutton {
    margin-left: auto;
    padding: 14px 28px;
    border-radius: 5px;
    border: 1px solid #22b573;
}

body{background-color: white; height: 150vh;}