@import url('header.css');
@import url('form.css');

.login-error {
  color: red;
  font-size: 1.2em;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: italic;
    margin: 1%;
    border-radius: 5px;
}

main{
    display: flex;
    justify-content: space-around;
}
section, section>div{
    display: flex;
    justify-content: center;
    align-items: center;
}
section>div{
    margin: 1%;
}
section p{
    margin-left: 0.5%;
    margin-right: 2%;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    flex-shrink: 0;
}
section img{
    width: 50%;
}

.form-response{
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: italic;
    margin: 1%;
    border-radius: 5px;
}

#tel-ico{
    width: 25%;
}

@media screen and (max-width:500px){
    main{
        display: block;
        margin: 0% 5%;
    }
    iframe{
        margin-top: 5%;
        width: 100%;
    }
    section{
        display: flex;
        flex-direction: column;
    }

}