@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

*{
margin: 0;
padding: 0;
outline: 0;
box-sizing: border-box;
}

body{
    font:  400 14px Roboto, sans-senrif;
    background: #f0f0f5;
    -webkit-font-smoothing: antialiased;   
}

input, button, textarea, select, a {
    font: 400 18px Roboto, sans-serif;
}

button{
    cursor: pointer;
}

form input, form select{
    width: 100%;
    height: 50px;
    color: #737380;;
    border: 1px solid #dcdce6;
    border-radius: 8px;
    padding: 0 24px;
}


form textarea{
    width: 100%;
    resize: vertical;
    min-height: 140px;
    height: 50px;
    color: #333;
    border: 1px solid #dcdce6;
    border-radius: 8px;
    padding: 16px 24px;
    line-height: 24px;
}


.button {
    width: 100%;
    height: 50px;
    background: #28347d;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    margin-top: 16px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    line-height: 50px;  
    transition: filter 0.2s;
}

.button:hover{
    filter: brightness(90%);
}

.backlink {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: #dcdce6;
    font-size: 13px;
    text-decoration: none;
    transition: opacity 0.2s;

}

.backlink svg{
    margin-right: 8px;
}

.backlink:hover{
    opacity: 0.8;
}

