header {
    background: #00b2d6;
    width: 100%;
    min-height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

header .logo img {
    max-height: 80px;
    max-width: 100%;
}

header .lang {
    font-family: Arial;
    font-weight: 700;
    font-size: 50px;
    color: white;
}

header .lang a {
    text-decoration: none;
    color: white;
}

header .lang .active {
    color: #c4d600;
}

.baner {
    margin-top: 40px;
    margin-bottom: 100px;
}

.baner img {
    width: 100%;
}

footer {
    background: #00b2d6;
    width: 100%;
    min-height: 120px;
    padding: 20px;
    margin-top: 100px;
}

footer h5 {
    font-size: 15px;
    color: white;
    margin:0;
    font-weight: 300;
}

footer h5:first-child {
    font-weight: 700;
}

footer img {
    width: 100%;
}

footer>div:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

footer>div:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.form img {
    width: 100%;
}

.form .row>div:first-child h2 {
    font-size: 30px;
    font-weight: 700;
}

.form .row>div:first-child h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    margin-top: 20px;
}

.form .row>div:first-child h4 {
    font-size: 18px;
    font-weight: 400;
}

.form .row>div:first-child p {
    margin: 30px 0;
}

.form .row>div:last-child p {
    color: #00b2d6;
    font-family: Arial;
}

.form .row>div:last-child h3 {
    color: #00b2d6;
    padding: 5px 0;
    border-bottom: 3px solid #00b2d6;
}

@media only screen and (min-width: 768px) {
    .form .row>div:last-child {
        padding: 0 12px 0 100px;
    }
}

.form-group {
    margin: 20px 0;
}

.form-group label {
    color: #00b2d6;
    font-weight: 700;
}

.form-group .light {
    font-weight: 400;
}

.register a {
    color: #00b2d6;
    text-decoration: none;
    font-weight: 700;
}

.register button {
    border: none;
    background: #00b2d6;
    color: white;
    font-weight: 700;
    font-size: 30px;
    padding: 10px;
    width: 250px;
    margin: 0 auto;
    display: block;
}

.register button:hover {
    transform: scale(1.1)
}


.error {
    font-weight: 700;
    color: red;
}

.thanks {
    display: none;
}

/* Mobile */

@media only screen and (max-width: 768px) {
    .form img {
        max-width: 80%;
        display: block;
        margin: 50px 0;
    }

    header {
        flex-direction: column;
    }

    .baner {
        margin-bottom: 40px;
    }

    footer>div:first-child,
    footer>div:last-child {
        height: auto;
    }

    footer>div>div:last-child {
        margin-top: 30px;
    }
}