html {
    font-size: 62.5%;
}
/** {*/
/*  box-sizing: border-box;*/
/*}*/
body {
    /*font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;*/
    font-size: 1.4rem;
    /*font-size: 14px;*/
    margin: 0;
}
.container {
    margin: 0 .8rem 2rem .8rem;
    display: grid;
    grid-template-columns: auto auto 1fr;
}
.container_login {
    grid-template-columns: 1fr minmax(auto, 455px) 1fr;
}

/*a.logo {*/
/*    display: flex;*/
/*    justify-content: center;*/

/*}*/
/*@media (min-width: 480px) {*/
/*    a.logo { margin: 0 40px; }*/
/*}*/

.hide {
    display: none !important;
}

img {
/*    width: 100%;*/
/*    max-width: 400px;*/
/*    vertical-align: bottom;*/
/*    margin-right: 15px;*/
/*    margin-top: 40px;*/
/*    margin-bottom: 40px;*/
    justify-self: center;
}
#shmogo {
    width: 250px;
}

form {
    margin: 20px;
    margin-bottom: 0;
    display: grid;
    grid-gap: 25px;
    justify-items: stretch;
    align-items: center;
    border-top: 2px solid #1856a4;

    padding: 40px 0;
}
@media (min-width: 480px) {
    form {
        padding: 40px 40px;
        box-shadow: 0px 1px 5px 1px rgb(0 0 0 / 13%);
    }
}

input[type=text], input[type=password], input[type=email], textarea{
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    border: 1px solid #ccc;
    line-height: 1.55;
    padding: 6px 12px;
}
input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, textarea:focus {
    outline: 0;
    /*box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);*/
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px #a0caff;
}
[type=submit] {
    border-radius: 2px;
    background: #1856a4de;
    color: white;
    font-weight: bold;
    border: 0;
    outline: none;
    height: 48px;
    cursor: pointer;
}
button:focus {
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}
button:active {
    box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
}

.link {
    justify-self: center;
    color: #5f5f5f;
}

.line {
    grid-column: 1/-1;
}
.line > a {
    color: #337ab7;
    text-decoration: none;
}
.line > a:hover {
    text-decoration: underline;
}
label {
    font-weight: bold;
}




* {
    box-sizing: border-box;
}
body {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 991px) 1fr;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
}
body > * {
    grid-column: 2/3;
}
/**/
.the_head {
    display: grid;
    grid-template-columns: 0 auto 1fr;
    height: 42px;
    margin: .8rem;
}
#home {
    justify-self: center;
    display: flex;
    text-decoration: none;
    cursor: pointer;
}
#logo {
    height: 42px;
    width: 42px;
}
#name {
    align-self: center;
    color: #415d72;
    text-transform: uppercase;
    margin: 0;
    font-size: 2.8rem;
    font-family: "Times New Roman", serif;
    line-height: 1;
}
/**/
nav {
    justify-self: end;
    display: flex;
    gap: 0.8rem;
}
nav > * {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #415d72;
    border: 2px solid #415d72;
    padding: 10px;
    border-radius: 10px;
}
nav > .current {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
}
#login {
    padding: 0.3rem;
    width: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
#login > svg {
    height: 2.5rem;
}

.btn {

}
.backk {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 0.2rem solid #29565938;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: bold;
    background-color: #8080800d;
    color: #415d72;
}

.back,.back:focus {
    display: inline-block; /* for button default is inline-block, for <a> - inline, setting here same for both */
    text-decoration: none;
    cursor: pointer;
    /*background-color: #8080800d;*/
    background-color: white;
    border: 0.2rem solid #29565938;
    border-radius: 0.5rem;
    padding: 1.2rem;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: #1856a4;
}
.back:focus:not(:active) {
    box-shadow: none;
}
.back:disabled {
    color: gray;
    background-color: #f3f3f3;
    border-color: #00000017 !important;
}