* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --body-bg: #fff;
    --body-color: #040307;
    --body-font-family: "Montserrat", sans-serif;
    --body-font-size: 14px;
    --body-line-height: 1.625;
    --body-text-align: left;
    --text-accent: #0aa9c8;
    --text-accent-hover: #0aa9c88a;
    --bg-accent: #1e91a8;
    --bg-fon-sidebar: #fcf9f7;
    --link-color: #0aa9c8;
} 
body, html {
    height: 100%;
}
body {
    height: 100%;
    width: 100%;
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
    font-weight: 400;
    background-color: var(--body-bg);
    color: var(--body-color);
    overflow: hidden;
}
.body-register {
    color: var(--text-color);
}
a {
    color: var(--link-color);
    transition: .25s;
}
.btn-accent-blue {
    background-color: #0aa9c8;
    border-color: #0aa9c8;
}
.btn-accent-blue:hover,
.btn-accent-blue:active, 
.btn-accent-blue:focus {
    background-color: #17caed!important;
    border-color: #18c6e9!important;
}
a:hover {
    text-decoration: none;
    color: var(--link-color)!important;
}
a.active {
    color: var(--text-accent);
}
a.active:hover {
    color: var(--text-accent-hover);
}
ul li {
    list-style: none;
}
svg {
    vertical-align: 0;
}
img {
    width: 100%;
    object-fit: contain;
}
.roboto-bold {
    font-weight: 700;
    font-style: normal;
}
.text-accent {
    color: #0aa9c8;
}
.text-normal {
    text-transform: none;
}
.text-logo {
    font-family: "Times New Roman";
}
.wrapper {
    align-items: stretch;
    display: flex;
    width: 100%;
}
.hamburger {
    position: relative;
}
.hamburger, .hamburger:after, .hamburger:before {
    background: #495057;
    border-radius: 1px;
    content: "";
    cursor: pointer;
    display: block;
    height: 3px;
    transition: background .1s ease-in-out,color .1s ease-in-out;
    width: 24px;
}
.hamburger:before {
    position: absolute;
    top: -8px;
    width: 20px;
}
.hamburger:after {
    bottom: -8px;
    position: absolute;
    width: 16px;
}
.sidebar-toggle {
    position: absolute;
    top: 1.5rem;
    cursor: pointer;
    display: flex;
    height: 26px;
    width: 26px;
}
.sidebar {
    background: var(--bg-fon-sidebar);
    direction: ltr;
    max-width: 310px;
    min-width: 310px;
    transition: margin-left .35s ease-in-out,left .35s ease-in-out,margin-right .35s ease-in-out,right .35s ease-in-out;
}
.sidebar.collapsing {
    margin-left: -260px;
}
.sidebar-content {
    height: 100vh;
    left: 0;
    position: sticky;
    top: 0;
    transition: margin-left .35s ease-in-out,left .35s ease-in-out,margin-right .35s ease-in-out,right .35s ease-in-out;
}
.sidebar-brand {
    display: flex;
    align-items: center;
    padding: 1.45rem 1rem;
    text-decoration: none;
}
.sidebar-brand img {
    width: 100%;
    max-width: 50px;
}
.sidebar-nav {
    padding-left: 0;
}
.sidebar-link, a.sidebar-link {
    color: var(--text-color);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.8rem;
    position: relative;
    text-decoration: none;
    transition: color 75ms ease-in-out;
}
.sidebar-item {
    margin: 0.2rem 0;
    padding: .5rem 1rem;
    transition: .25s linear;
}
.sidebar-item.active, .sidebar-item:hover {
    background-color: var(--text-accent-hover);
}
.main {
    height: 100vh;
    min-width: 0;
    width: 100%;
    background-color: var(--body-bg);
    transition: margin-left .35s ease-in-out,left .35s ease-in-out,margin-right .35s ease-in-out,right .35s ease-in-out;
}
.title {
    margin-bottom: 3rem;
    padding: 1rem;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}
.container-main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 100vh;
    padding: 2rem 0 4rem;
    overflow-y: auto;
}
.cabinet {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    max-height: 380px;
    /* background-image: url("../img/fon-reg.jpg"); 
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
}
.cabinet form {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 40;
}
/* .cabinet:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
} */
.cabinet-form {
    display: flex;
    flex-wrap: wrap;
    column-gap: 3.42rem;
    row-gap: 1rem;
    width: 100%;
    max-width: 750px;
    padding: 1rem;
    color: var(--text-color);
}

.cabinet-form label {
    display: block;
    margin-bottom: 3px;
}

.cabinet-group-form {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.cabinet-form-col {
    width: 315px;
    line-height: 1.2;
}

.cabinet-group-form-line {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    column-gap: 3.42rem;
    row-gap: 2rem;
    width: 100%;
}

.cabinet-form-input {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* .cabinet-form-btn {
    padding: 8px 20px;
    width: 100%;
    font-size: 20px;
    border: 1px solid var(--text-accent-hover);
    border-radius: 20px;
    background-color: var(--text-accent-hover);
    box-shadow: 1px 1px 5px 6px #85888c;
    line-height: 1;
    transition: all 0.25s;
    cursor: pointer;
} */
/* .cabinet-form-btn:hover {
    border: 1px solid var(--text-accent);
    background-color: var(--text-accent);
    box-shadow: 1px 1px 5px 1px var(--text-accent-hover);
    color: white;
} */
.checkbox {
    position: relative;
    display: inline-block;
}
.checkbox input[type=checkbox] {
    display: none;
}
.checkbox input[type=checkbox]:checked + label:before {
    content: "✓";
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    font-size: 15px;
    color: #8695aa;
    text-align: center;
    line-height: 16px;
}
.checkbox label {
    display: block;
    padding-left: 25px;
}
.checkbox label:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #eceff4;
    border-radius: 3px;
    cursor: pointer;
}
@media (max-width: 1020px) {
    .main {
        max-width: 100vw;
        min-height: 100vh;
        height: 100%;
        width: 100vw;
    }
    .cabinet-form {
        min-width: 750px;
    }
    .title {
        margin: 1rem 0 0rem;
    }
}
@media (max-height: 450px) {
    body {
        overflow-y: auto;
    }
    .main {
        max-width: 100vw;
        min-height: 100vh;
        height: 100%;
        width: 100vw;
    }
    .cabinet-form {
        min-width: 750px;
    }
    .title {
        margin: 1rem 0;
    }
}
@media (max-width: 720px) {
    body {
        overflow-y: auto;
    }
    .cabinet {
        min-height: 596px;
    }
    .cabinet-form {
        min-width: 100%;
    }
}
@media (max-width: 426px) {
    .cabinet {
        min-height: 638px;
    }
    .cabinet-form-col,
    .cabinet-group-form {
        width: 100%;
    }
    .sidebar {
        max-width: 260px;
        min-width: 260px;
    }
}