@import url(//fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800);
:root {
    --primary: #0099FF;
    --secondary:#092051;
    --error: #dc3545;
    --text-color: #333;
    --gradient: linear-gradient(90deg, rgb(9, 32, 81) 0px, rgb(0, 120, 255) 100%)
}
html {
    position: relative;
    min-height: 100%;
}
body {
    background-color: #EAE7E7;
    margin: 0;
    padding-bottom: 50px;
    font-family: "Montserrat", sans-serif;
    color: var(--text-color);
    font-weight: 300;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    font-weight: bold;
}
a {
    color: #065fc2;
    font-weight: 600;
}
.featured-text {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1rem;
}

footer{
    width: 100%;
    position: absolute;
    bottom: 0px;
    font-size: .8rem;
}

.gaz-box {
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 7px;
}
.gaz-btn{
    text-transform: uppercase;
    font-weight: bold;
    background: var(--primary);
}
.gaz-btn-eye {
    background: #d7d7d7;
    height: 38px;
    outline: none;
}

.invalid-form-data {
    background-color: var(--error);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 5px;
    padding: 4px 10px;
    border-radius: 4px;
}
.invalid-form-data a{
    color: white;
    text-decoration: underline;
}