@font-face {
    font-family: 'Klavika';
    src: url('klavika/klavika-regular-webfont.eot');
    src: url('klavika/klavika-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('klavika/klavika-regular-webfont.woff') format('woff'),
         url('klavika/klavika-regular-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Klavika';
    src: url('klavika/klavika-medium-webfont.eot');
    src: url('klavika/klavika-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('klavika/klavika-medium-webfont.woff') format('woff'),
         url('klavika/klavika-medium-webfont.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

* {
    font-family: "Klavika", "Open Sans", sans-serif;
}

html {
    
}

body {
    font-family: "Klavika", "Open Sans", sans-serif;
    color: black;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    box-sizing: border-box;

    margin: 0;
    background-color: white;

    background-image: url(../rhionbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;

    box-shadow: none;

    padding: 0;
    max-width: 100%;
}

section {
    box-shadow: none;
    width: 1000px;

    @media screen and (max-width: 1040px){
        width: 90vw;
    }    

    min-height: 700px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    margin-top: 56px;
    margin-bottom: 170px;
}

section>header {
    text-align: center;
}

section>header>img {
    width: 348px;
    height: 64px;
    margin-top: 64px;
}

section>header>p {
    font-size: 45px;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    height: 55px;
    margin-top: 0;
    margin-bottom: 77px;
}

section>article {
    padding: 0;
    margin: 0 190px;

    @media screen and (max-width: 1040px){
        margin: 0 10%;
    }
}

section>article>header {
    color: black;
    font-family: "Klavika";
    font-size: 27px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0px;
    padding-bottom: 38px;
}

section>article>p {
    clear: both;
}

section>article>form>input {
    background-color: #FFFFFF;
    float: left;
    height: 30px;
    width: 95%;
    padding: 14px 14px 14px 14px;
    margin-left: 0;
    margin-bottom: 20px;
    font-size: 27px;
    filter: none;
    /*box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);*/
    border-color: transparent;
    outline: none;
}

section>article>form>input:focus {
    border: 2px solid #707070;
}

section>article>form>input:read-only {
    border: 0;
    box-shadow: none;
    background-color: #ddd;
    cursor: not-allowed;
}

section>article>form>canvas {
    height: 65px;
    width: 50%;
    margin-bottom: 10px;
    background-color: #FFFFFF;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

section>article>form>nav {
    clear:both;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
}

section>article>form>nav>a {
    flex: 1 auto;
    @media screen and (max-width: 700px){
        flex-shrink: 0;
        width:100%;
    }
    margin-right: 0;
    margin-bottom: 10px;
    color: #0099cc;
    text-decoration: underline;
}

section>article>form>nav>button {
    flex: 1 auto;
    @media screen and (max-width: 700px){
        flex-shrink: 0;
        width:100%;
    }
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 24px;
    border: 3px solid #000000;
    border-radius: 25px;
    padding-left: 50px;
    padding-right: 50px;
    background-image: none;
    box-shadow: none;
    outline: none;
    color: white;
    background-color: black;
    box-sizing: border-box;
    height: 55px;
    margin-bottom: 10px;
    cursor: pointer;
}

section>article>form>nav>button:disabled {
    cursor: not-allowed;
    opacity: .4;
}

section>article>form>nav>button:hover {
    background-color: white;
    color: black;
}

footer {
    background-color: #000000;
    color: #FFFFFF;

    text-align: left;
    position: relative;
    bottom: 0px;
}

footer>article {
    width: 1000px;

    @media screen and (max-width: 1040px){
        width: 90vw;
    }

    max-width: 1410px;
    margin: 0 auto;
    padding: 45px 0 55px;
}

footer>article>header {
    font-size: 27px;
    font-weight: 500;
    text-transform: none;
    margin-bottom: 0;
    line-height: 32px;
    margin-bottom: -15px;
}

footer>article>p {
    color: #FFFFFF;
}

footer>article>p>a {
    color: #FFFFFF;
}

footer>article>p>a:hover {
    outline: 0;
}

.invisible {
    display: none;
    visibility: hidden;
}

.error {
    color: #ee4035;
}