:root { 
    --main-font: "Noto Sans Armenian", sans-serif; 
}
@supports (font-variation-settings: "wght" 400) {
    :root { 
        --main-font: "Noto Sans Armenian Var", sans-serif; 
    }
} 

* {
    -webkit-tap-highlight-color: transparent; 
}

html, 
body, 
input, 
button, 
textarea, 
select {
    font-family: var(--main-font);
    font-optical-sizing: auto; 
    font-size: 14px;
}
/*
body {
    font-family: "Arial AMU", "Arian AMU", sans-serif;
    font-size: 14px;
}
*/
.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.header h1 {
    color: #0683a1;
    margin-bottom: 0px;
}

.header h2 {
    color: #0683a1;
    margin-bottom: 0px;
}

@media screen and (max-width: 640px) {

    .header {
        flex-direction: column;
        align-items: flex-start;
    }

}

.description {
    margin-top: 30px;
}

.description p:first-child {
    margin-top: 0px;
}

a {
    color: #0484A2;
    text-decoration: none;
}

a:hover {
    color: #007795;
    text-decoration: none;
}

.req {
    color: #be4343;
}

.small {
    color: #777777;
    font-size: 12px;
    margin-bottom: 5px;
}

.important {
    color: #ff0000;
}

.register {
    width: 90%;
    max-width: 990px;
    margin: 20px auto 20px auto;
    line-height: 1.3em;
}

.inp {
    border-radius: 3px;
}

.lbl {
    font-weight: bold;
    margin-bottom: 5px;
}

.inp-other {
    max-width: 445px;
}

h1 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}

h2 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 20px;
}

h3 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
}

.notes {
    margin: 30px 0px;
    font-style: italic;
}

.opt, .opt2 {
    display: none;
}



/*
.reg-logo {
    float: left;
    margin-right: 20px;
}

.reg-head {
    margin-top: 40px;
}


.reg-logo-left {
    float: left;
    max-width: 45%;
}

.reg-logo-right {
    float: right;
    margin-top: 20px;
    max-width: 45%;
}

.reg-clear {
    clear: both;
}

*/