body > header > div{
    justify-content: center;
}
.banner h2{
    margin-bottom: calc(var(--base-unit)*3);
}
form{
    width: 350px;
    margin: 0 auto calc(var(--base-unit)*3);
    position: relative;
}
form p{
    background: #fff;
    border-radius: 3px;
    line-height: calc(var(--base-unit)*2);
    display: flex;
    padding: 0 20px;
    align-items: center;
}
form label{
    line-height: 54px;
}
form label .material-symbols-outlined{
    line-height: 54px;
    vertical-align: bottom;
    color: var(--light-text-c)
}
form p:focus-within{
    box-shadow: inset 0px 0px 4px 4px rgba(255,0,0,0.3);
}
 form p input{
    flex:1;
    line-height: 54px;
    border:none;
    outline: none;
    background: none;
    font-style: italic;
}
form p input::placeholder{
    color: var(--light-text-c);
}
form > p:last-of-type{
    background:none;
    border: 1px solid #fff;
}

form > p:last-of-type input{
    color:#fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    font-style: normal;
}
form > p + p{
    margin-top: 10px;
}
form input:not([type="submit"]){
    padding-left: 10px;
}
footer .cta{
    background: none;
}
footer .cta h2{
    color: var(--text-c)
}
.feedback{
    position: absolute;
    left: calc(100% + 50px);
    top:0;
    background:#fff;
    border-radius: 4px;
    width: 270px;
    text-align: left;
    padding:20px;
}
.feedback p{
    line-height: 27px;
    background:none;
    color:#f30000;
}
.feedback p + p {
    margin-top:27px;
}
.box{
    width: 0px;
    height: 0px;
    border-width: 10px;
    border-style: solid;
    /* border-color: blue red green yellow */
    border-color: transparent red transparent transparent
}
.feedback:after{
    content:'';
    position: absolute;
    right:100%;
    top:30px;
    width:0;
    height: 0;
    border-style:solid;
    border-width:10px 14px;
    border-color:transparent #fff transparent transparent;
}
.sign footer{
    text-align: center;
    margin-top: calc(var(--base-unit)*3);
}