*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

body {
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}


.form {
    background: rgba(#13232f, .9);
    padding: 40px;
    max-width: 650px;
    margin: auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px 4px rgba(#13232f, .3);
}


h1 {
    text-align: center;
    color: #000;
    font-weight: 400;
    font-style: bold;
    margin: 0 0 40px;
}

label {
    position: absolute;
    transform: translateY(6px);
    left: 13px;
    color: rgba(#707070bc, .5);
    transition: all 0.25s ease;
    -webkit-backface-visibility: hidden;
    pointer-events: none;
    font-size: 22px;

    .req {
        margin: 2px;
        color: #F36E27;
    }
}

label.active {
    transform: translateY(-20px);
    left: 2px;
    font-size: 14px;

    .req {
        opacity: 0;
    }
}

label.highlight {
    color: #F36E27;
}

input,
textarea,
select {
    font-size: 22px;
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 10px;
    background: none;
    background-image: none;
    border: 1px solid #a0b3b0;
    color: #000;
    border-radius: 0;
    transition: border-color .25s ease, box-shadow .25s ease;

    &:focus {
        outline: 0;
        border-color: #F36E27;
    }
}

textarea {
    border: 2px solid #a0b3b0;
    resize: vertical;
}

select {
    border-radius: 10px;
}

.field-wrap {
    position: relative;
    margin-bottom: 40px;
}

.two-row {
    &:after {
        content: "";
        display: table;
        clear: both;
    }

    >div {
        float: left;
        width: 48%;
        margin-right: 4%;

        &:last-child {
            margin: 0;
        }
    }
}

.button {
    border: 0;
    outline: none;
    border-radius: 0;
    padding: 15px 0;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    background: #F36E27;
    color: #fff;
    transition: all.5s ease;
    -webkit-appearance: none;

    &:hover,
    &:focus {
        background: #c75517
    }
}


.button-block {
    display: block;
    width: 100%;
    cursor: pointer;
}

.logo {
    margin: 0;
    height: 120px;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}



@media (max-width: 600px) {

    label {
        font-size: 18px;
    }

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        height: 100px;
    }
}