@charset "UTF-8";

:root {
    --color-primary: #4492df;
    --color-primary-hover: #1e79d3;
    --color-yellow: #ffcc00;
    --color-link: #1876f2;
    --color-link-hover: #0866e1;
    --primary-button-background: #0064E0;
}

html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    margin: 0;
    padding: 0;
    line-height: 1;
    color: #000;
    height: 100%;

}

body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: #f8f8f8;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

input, textarea, select {
    font-family: 'Roboto', sans-serif;
    -webkit-text-size-adjust: none;
    margin: 0;
    padding: 0;
}

a, h1, h2, h3, h4, h5, p {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

img {
    max-width: 100%;
    max-height: 100%;
}

figure {
    margin: 0;
    padding: 0;
}

textarea {
    font-family: 'Roboto', sans-serif;
}

svg {
    max-width: 100%;
    max-height: 100%;
}

ul, ol, li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a, a:hover, a:active {
    text-decoration: none;
}

a {
    color: var(--color-link);
}

a:hover, a:active {
    color: var(--color-link-hover);
}


button, button:hover, button:active, button:focus {
    border: 1px solid transparent;
    outline: none;
}


/* basic classes */

.center {
    text-align: center !important;
}

.right {
    text-align: right !important;
}

.block {
    display: block;
}

.hidden {
    display: none !important;
}

/* text colors*/

/* FLEX */

/* flexbox libruary */

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.align-content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.align-content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

/* flexbox libruary */

/* buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    outline: none;
    box-sizing: border-box;
    transition: color .3s, background-color .3s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
}

.btn_xl {
    height: 48px;
    border-radius: 8px;
    padding: 0 25px;
    font-size: 16px;
    gap: 10px;
}
.btn_xl svg {
    height: 24px;
    width: 24px;
    margin-left: -4px;
}

.btn_md {
    height: 40px;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 14px;
    gap: 7px;
}

.btn_md svg {
    height: 24px;
    width: 24px;
}

.btn_blue {
    background-color: var(--primary-button-background);
    border-color: var(--primary-button-background);
    color: #fff;
}

.btn_blue:hover {
    background-color: #015dce;
    border-color: #015dce;
    color: #fff;
}

.btn_blue svg {
    fill: #fff;
}


.btn_green {
    background-color: #587c3b;
    border-color: #587c3b;
    color: #f6f9fe;
}

.btn_green:hover {
    background-color: #46602e;
    border-color: #46602e;
}

.btn_green svg {
    fill: #fff;
}


.btn_red {
    background-color: #960000;
    border-color: #960000;
    color: #fff;
}

.btn_red:hover {
    background-color: #6b0000;
    border-color: #6b0000;
}

.btn_red svg {
    fill: #fff;
}


.btn_yellow {
    background-color: #ffb800;
    border-color: #ffb800;
    color: #000;
}

.btn_yellow:hover {
    background-color: #e5a301;
}

.btn_red svg {
    fill: #000;
}

.btn_white {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    color: #373737;
}

.btn_white:hover {
    background-color: #f6f9fe;
}

.btn_bordered_white {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn_bordered_white:hover {
    border-color: #eee;
    background-color: transparent;
}

.btn_bordered_blue {
    border: 1px solid #187ede;
    color: #222;
}

.btn_bordered_blue:hover {
    border-color: #1260a9;
    color: #000;
}

.btn_white svg {
    fill: #2d64d2;
}

.btn_transparent {
    color: #373737;
}

.btn_transparent:hover {
    color: #444;
}

.btn_transparent svg {
    fill: #373737;
}

.btn_pink {
    background-color: #ef5288;
    color: #fff;
}

.btn_pink:hover {
    background-color: #c74773;
}

.btn_pink svg {
    fill: #fff;
}


/* buttons */

/* inputs */

.input-wrap {
    position: relative;
    margin-bottom: 15px;
}

.input-wrap input {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 16px;
    padding: 10px 15px;
    width: 100%;
    height: 55px;
    border-radius: 5px;
    outline: none;
    color: #000;
    line-height: 1.5;
    transition: border-color .3s;
}

.input-wrap input::placeholder {
    opacity: 0;
}

.input-wrap label {
    position: absolute;
    top: 1px;
    left: 10px;
    line-height: 51px;
    padding: 2px 5px;
    color: #444;
    background: transparent;
    transition: top .3s, font-size .3s, line-height .3s, background-color 0.3s;
    cursor: text;
}

.input-wrap input:focus, .input-wrap input:not(:placeholder-shown) {
    padding-top: 15px;
}
.input-wrap input:focus + label, .input-wrap input:not(:placeholder-shown) + label {
    line-height: 13px;
    font-size: 13px;
}

.form-error{
    margin-bottom: 15px;
    color: red;
}
/* inputs */



.container {
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    max-width: 100%;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

.login{
    display: flex;
}

.login-form {
    margin: 150px auto 0 auto;
    width: 450px;
    max-width: 100%;
    background: #fff;
    padding: 30px 15px;
}

.login-form__title{
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.login-form .btn{
    width: 100%;
}

.login-form__logo{
    margin-bottom: 15px;
    text-align: center;
}
.login-form__logo img{
    height: 50px;
}