@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400;900;&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    /* background-color: #8EC5FC; */
    /* background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%); */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

.language{
    text-align:center;
    padding: 16px 16px;
    font-size: 0.9rem;
    background:whitesmoke;
}

.language a{
    margin: 0px 32px;
}



.form-field {
    padding: 8px 0px;
}

textarea {
    height: 160px;
    width: 100%;
    padding: 16px 16px;
    outline: none;
    border-radius: 4px;
    background: #ffffff;
    border: 2px solid #DC143C;
    font-family: 'Montserrat', sans-serif;
    font-size:1rem;
    font-weight: 600;
}

input[type=text],
input[type=number],
input[type=email] {
    height: 40px;
    width: 100%;
    border-radius: 8px;
    outline: none;
    padding: 0px 16px;
    border: 1px solid silver;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

input[type=button] {
    height: 50px;
    width: 100%;
    border-radius: 4px;
    outline: none;
    border: none;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(62deg, #801818 0%, #C51E3A 25%,#C51E3A 75%, #B22222 100%);
    color: white;
    font-weight: 800;
    font-size:1rem;
}


label {
    display: block;
    text-align: center;
    padding: 16px 0px;
    font-weight: 600;
    font-size: 1rem;
}

ul {
    list-style: none;
}

.business-logo {
    text-align: center;
    margin: 12px;
}

.business-logo img {
    height: 100px;
    width:200px;
    object-fit: contain;
    border: none;
}

.business {
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
    background:whitesmoke;
    width: 90%;
    margin: 0 auto;
    padding: 16px 32px;
    border-radius: 4px;
}

.business i{
    margin-right: 10px;
    color: white;
    background-image: linear-gradient(62deg, #C51E3A 0%, #B22222 100%);
    padding:4px 6px;
    border-radius:4px;
}

.business-name {
    padding: 8px 0px 0px 0px;
    font-size: 0.9rem;
    font-weight: 800;
}


.business-email {
    padding: 8px 0px 0px 0px;
    font-size: 0.85rem;
    font-weight: 400;
}

.business-phone {
    padding: 8px 0px 8px 0px;
    font-size: 0.85rem;
    font-weight: 400;
}

.suggestion-box {
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 32px 0px 0px 0px;
    font-size: 1.1rem;
}

.comment-form {
    padding: 16px 16px;
    margin: 0 auto;
    margin-bottom: 16px;
    width: 90%;
}

.form-success {
    color: olivedrab;
    font-weight: 600;
    font-size: 0.95rem;
    text-align:center;
}

.form-failed,
.form-error {
    color: orangered;
    font-size: 0.95rem;
    padding: 8px 0px;
    text-align: center;
}

.footer{
    background:whitesmoke;
    padding:16px 0px;
}
.copyright{
    text-align:center;
    font-size: 0.95rem;
}

.developer{
    text-align:center;
    font-size: 0.75rem;
    margin: 24px 0px 32px 0px;
}

.developer a{
    font-size:0.8rem;
    font-weight:800;
}