body,html {
    height: 100%;
    font-family: 'Galano Grotesque', 'Open Sans', Arial, sans-serif;
}

@font-face {
    font-family:'Galano Grotesque';
    src: local('GalanoGrotesque-Bold'), local(Galano Grotesque Bold),
        url('../fonts/Galano Grotesque Bold.woff2') format('woff2'),
        url('../fonts/Galano Grotesque Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}

@font-face {
    font-family:'Galano Grotesque';
    src: local('GalanoGrotesque-Medium'), local(Galano Grotesque Medium),
        url('../fonts/Galano Grotesque Medium.woff2') format('woff2'),
        url('../fonts/Galano Grotesque Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}

@font-face {
    font-family:'Galano Grotesque';
    src: local('GalanoGrotesque-Regular'), local(Galano Grotesque Regular),
        url('../fonts/Galano Grotesque.woff2') format('woff2'),
        url('../fonts/Galano Grotesque.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}

@font-face {
    font-family:'Galano Grotesque';
    src: local('GalanoGrotesque-Italic'), local(Galano Grotesque Italic),
        url('../fonts/Galano Grotesque Italic.woff2') format('woff2'),
        url('../fonts/Galano Grotesque Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}

main {
    display: flex !important;
    justify-content: center;
    height: 100%;
}

.logo {
    margin-bottom: 45px;
}

.left-side, .right-side {
    display: flex;
    justify-content: space-around;
    width: 50%;
    align-items: center;
    height: 100%;
}

.left-side {
    background-image: url('../img/login/background.svg');
    background-repeat: no-repeat;
    background-size: 1600px;
    background-position: right;
}

.left-side.block{
    background-color: red;
    background-image: none;
    background-repeat: no-repeat;
    color: #FFF !important;
    -webkit-mask: url('../img/login/background.svg') no-repeat;
    mask: url('../img/login/background.svg') no-repeat;
    mask-size: 1600px;
    -webkit-mask-size: 1600px;
    mask-position: right;
    -webkit-mask-position: right;

}

.btn-prds-default {
    /*margin: 50px 90px 0 90px;*/
    margin-top:30px;
    color: #616161;
    display: block;
    border: 2px solid #616161;
    border-radius: 50px;
    padding: 8px 15px;
    min-width:120px;
}

.btn-prds-default:hover {
    color: #0A2645;
    border-color: #0A2645;
    text-decoration: none;
}

.btn-prds-action {
    background-color: none;
    border: 2px solid #03DBFF;
    padding: 8px 25px;
    border-radius: 50px;
    margin-top: 15px;
    display: inline-block;
    text-align: center;
    color: #606060;
    font-weight: 500;
}

.btn-prds-action:hover {
    text-decoration: none;
    color: #03DBFF;
}

textarea, input, button { outline: none; }

input[type="text"],
input[type="password"] {
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-bottom: solid 2px #c9c9c9;
  transition: border 0.3s;
  width: 100%;
}
input[type="text"]:focus,
input[type="text"].focus,
input[type="password"]:focus,
input[type="password"].focus {
  border-bottom: solid 2px #03DBFF;
}

input[type=checkbox]{
    height: 0;
    width: 0;
    visibility: hidden;
}

label {
    cursor: pointer;
    text-indent: 60px;
    font-weight: normal;
    color: #9F9F9F;
    padding-top: 2px;
    width: 50px;
    height: 26px;
    background: grey;
    display: block;
    border-radius: 50px;
    position: relative;
}

label:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 22px;
    transition: 0.3s;
}

input:checked + label {
    background: #03DBFF;
}

input:checked + label:after {
    left: calc(100% - 2px);
    transform: translateX(-100%);
}

label:active:after {
    width: 32px;
}

