/* Инпуты */
input[type="text"],input[type="submit"],input[type="button"],input[type="email"],input[type="login"],input[type="password"],input[type="search"]{
    width: 200px;
    height: auto;
    font-size: 1.2em;
    margin-bottom: 10px;
    border-radius: 4px;
    padding-left: 10px;
}
select {
    width: 215px;
    height: auto;
    font-size: 1.3em;
    margin-bottom: 10px;
    border-radius: 4px;
    padding-left: 10px;
}
input[type="date"]{
    width: 200px;
    height: auto;
    font-size: 1.2em;
    margin-bottom: 25px;
    border-radius: 4px;
    padding-left: 10px;
}
input[type="number"]{
    width: 150px;
    height: auto;
    font-size: 1.2em;
    margin-bottom: 10px;
    border-radius: 4px;
    padding-left: 10px;
}
.button1 {
    width: auto;
    height:auto;
    font-size: 1.2em;
    color:  #424949;
    margin-bottom: 25px;
    margin-right: 5px;
    border-radius: 4px;
    padding-left: 10px;
}
button, input[type="submit"] {
    display: inline-block;
    color: #000000;
    font-size: 0.8em;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 -1px rgba(255,255,255,.5);
    user-select: none;
    margin-right: 5px;
    margin-bottom: 15px;
    padding: 0.4em 0.5em;
    border: 1px solid rgb(80,32,0);
    border-radius: 5px;
    outline: none;
    background: rgb(255,255,255) linear-gradient(rgb(255,255,255), rgb(150,150,150) 80%);
    box-shadow:
        0 6px rgb(0,0,0),
        0 3px 5px rgba(0,0,0,.4),
        inset 0 1px rgba(150,150,150,.3),
        inset 0 0 3px rgba(150,150,150,.5);
    transition: .2s;
}
button:hover {
    background: rgb(200,200,200) linear-gradient(rgb(120,120,120), rgb(200,200,200) 80%);
}
button:active {
    background: rgb(200,200,200) linear-gradient(rgb(120,120,120), rgb(200,200,200) 80%);
    box-shadow:
        0 2px rgb(86,38,6),
        0 1px 6px rgba(0,0,0,.4),
        inset 0 1px rgba(255,255,255,.3),
        inset 0 0 3px rgba(255,255,255,.5);
    -webkit-transform: translate(0, 4px);
    transform: translate(0, 4px);
}

input[type="submit"]:hover {
    background: rgb(200,200,200) linear-gradient(rgb(120,120,120), rgb(200,200,200) 80%);
}
input[type="submit"]:active {
    background: rgb(200,200,200) linear-gradient(rgb(120,120,120), rgb(200,200,200) 80%);
    box-shadow:
        0 2px rgb(86,38,6),
        0 1px 6px rgba(0,0,0,.4),
        inset 0 1px rgba(255,255,255,.3),
        inset 0 0 3px rgba(255,255,255,.5);
    -webkit-transform: translate(0, 4px);
    transform: translate(0, 4px);
}
input[type="checkbox"] {
    display: inline;
}
.back_btn {
    position: absolute;
    top: 5px;
    right: 15px;
    width: auto;
}
.tabs {
    width: 100%; padding: 0px; margin: 0 auto;
    font-size: 1.0em; text-align: left;
}
.tabs>input { display: none;}
.tabs>div {
    display: none;
    padding: 12px;
    border: 1px solid #C0C0C0;
}
.tabs>label {
    font-weight: 600;
    display: inline-block;
    padding: 7px;
    margin: 0 -5px -1px 0;
    text-align: center;
    color: #666666;
    border: 1px solid #C0C0C0;
    background: #b8b8b8;
    cursor: pointer;
}
.tabs>input:checked + label {
    color: #000000;
    border: 1px solid #C0C0C0;
    border-bottom: 1px solid #FFFFFF;
    background: #E0E0E0;
}
#tab_1:checked ~ #txt_1,
#tab_2:checked ~ #txt_2,
#tab_3:checked ~ #txt_3,
#tab_4:checked ~ #txt_4,
#tab_5:checked ~ #txt_5 { display: block; }

/*Mobile*/
@media all and (max-width: 1024px) {
    input, select, button {
        zoom: 250%;
        max-width: 90vw;
    }
    .tabs>label {
        font-size: 1.6em;
        padding-bottom: 50px;
    }
    .back_btn {
        position: absolute;
        top: 5px;
        right: 4px;
    }
}