@font-face {
    font-family: 'Montserrat';
    src: url('../font/static/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'Montserrat', sans-serif;
}
#status {
    margin-top: 10px;
    font-weight: bold;
}
.success {
    color: green;
    text-align: center
}
.error {
    color: red;
}
.hidden-field {
    display: none;
}
body{
    margin: 0;
}

#contactForm{
    width: 100%;
}
#message{
    width: 98%;
    height: 200px;
    border: solid 1px gray;
    border-radius: 5px;
    padding: 5px;
}
#logo{
    height: 50px;
}
#header-title{
    color: #7bc043;
    margin: 15px 0 0 0;
}
#btn-submit{
    background: #7bc043;
    border: none;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    color: #fff;
    font-size: 19px;
    margin-top: 10px;
    cursor: pointer;
}
#section-container {
    position: relative;
    height: 100vh;
    background: #fdfdfd;
}
#data-info{
    color: #7bc043;
    margin: 5px 0;
}

@media (min-width: 551px){
    #container-box {
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 500px;
        padding: 20px;
        background: #fff;
        border: solid 1px #80808026;
        border-radius: 5px;
    }
}
@media (max-width: 550px){
    #container-box{
        padding: 0;
        width: 90%;
        margin: auto;
    }
}