
body{
    margin: 0px;
}
#banner {
    position: relative;
    display: block;
    width: 298px;
    height: 598px;
    background: url(../images/ow-logo.svg) 92px 556px no-repeat;
    background-size: 119px 27px;
    overflow: hidden;
    border: #d9d9d9 1px solid;
}

#ad {
    display: block;
    overflow: hidden;
    width: 298px;
    height: 598px;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #262626;
}
#ad *{
    font-family: Arial, sans-serif;
}
.headline {
    text-align: center; 
    color: #262626;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    margin-top: 24px;
}
.headline .info{
    font-size: 34px;
    line-height: 1.17 ;
    letter-spacing: 0.5px;
    font-weight: bold;
    font-family: Arial, sans-serif; 
    
}
 
.subheadline {
    width: 170px; 
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 26px;
    letter-spacing: normal;
    text-align: center;
    color: #3a3949;

    margin: 10px auto;
}
 
.icon-headline{
    width: 145px;
    height: 149px;
    object-fit: contain;
    margin: 10px auto 6px;
} 
form { 
    margin: 0;
    padding: 0;
    overflow:hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}
label{
    font-size: 13px;
    color: #1f8a31;
    font-weight: bold; 
    line-height: 19px;
    letter-spacing: normal;
    margin-bottom: 8px;
} 
.text_input { 
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
    padding: 0 5px;
    width: 210px;
    height: 40px;
    outline: none;
    border-radius: 2px;
    margin-bottom: 13px;

    font-size: 15px; 
    line-height: 19px;
    letter-spacing: 0.26px;
    font-weight: 600;

    border-radius: 2px;
    border: solid 1px #b7b7b7;
    background-color: #fff;
    box-shadow: inset 0px 0px 3.5px 1.5px rgb(150 158 199 / 34%)
    
    
}

.text_input#fullAddress:active,:focus{
    border-color: #000;
}
button {
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 15px;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    border-radius: 2px; 
    cursor: pointer;
} 
.button {
    background: #1f8a31;
    cursor: pointer;
    width: 209px;
    height: 40x;
    margin: -1px 0 39px 1px;
    padding: 11px 80px 15px 79px;
    border-radius: 3px;
    background-color: #1f8a31;

    position: relative;
    overflow: hidden;
    background-image: linear-gradient(-75deg, #179C2F 0%, #208732 100%);
    z-index: 1;
}
.button:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-image: linear-gradient(-75deg, #1B722B 0%, #208732 100%);
    transition: all .3s;
    z-index: -1;
}
.button:hover:before {
    width: 100%;
}



