@font-face {
    font-family: "Peace sans";
    src: local("Peace sans"),
    url("vendors/fonts/peace_sans.otf");
    font-weight: normal;
    font-style: normal;
}

:root{
    --main-color: #000;
    --btn-color: #5319f0;
    --main-bg: #c5edff;
    --second-bg: #ebfeff;
    --third-bg: #6758ff;
}


body {
}

body, html, .wrapper{
    height: 100%;
    margin: 0;
}
div.container {
    max-width: 1080px;
}

header {
    height: 50px;
    min-height: 50px;
    background: var(--third-bg);
}

.wrapper {
    background: var(--main-bg);
}
.workarea {
    background-color: var(--second-bg);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.logo {
    height:calc(100% - 5px);
    margin-block: auto;
    margin-right: 3rem;
    display: flex;
    flex-direction: row;
}
.logo img{
    height: 100%;
}
header .title {
    font-weight: 500;
    font-size: 24px;
    color: white;
    margin-block: auto;
}
.logo-container .title {
    font-weight: 500;
    font-size: 32px;
    color: black;
}

/* FORM*/
.center-container{
    max-width: 600px;
    width: 600px;
    margin: auto;
}
.center-container .logo-container {
    width: max-content;
}
.center-container .logo-container img {
    width: 100%;
}
.bordered-container {
    background-color: var(--main-bg);
}
.bordered-container a {
    text-decoration: underline;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #0F79DB;
}
.bordered-container a.big-link {
    font-size: 18px;
    line-height: 21px;
}
.bordered-container {
    border: 1px solid #C1C1C1;
    border-radius: 5px;
}
.bordered-container h1{
    font-family: 'Peace Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 42px;
}
.bordered-container .form-description{
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #6B6B6B;
}
.bordered-container .form-text{
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}
.bordered-container .form-text-big{
    font-size: 18px;
    line-height: 28px;
}
.bordered-container .form-hint{
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #BCBCBC;
    margin-top: .5rem;
}
.form-group label {
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
}

.form-group input.form-control
{
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding: 15px 20px;
    border: 1px solid #C1C1C1;
    border-radius: 4px;
    color: #6B6B6B;
    transition: 250ms all;
}
input.form-control::placeholder{
    color: #DDDDDD!important;
    transition: 250ms color;
}
input.form-control:hover, input.form-control:active, input.form-control:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #C1C1C1;
}
input:active, input:focus {
    background: #F4FAFF!important;
    border: 1px solid #C1C1C1!important;
    outline: none!important;
}


.form-control.is-invalid{
    background-color: #FDC8CE;
    border: 1px solid #FF7676;
    color: #D92033;
}
.form-control.is-invalid::placeholder{
    color: #D92033!important;
}



.form-check .form-check-input{
    margin-top: .5rem;
}
.form-check label{
    padding: 5px;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}



.code-inputs-block {

}
.code-inputs-block .box .field{
    display: flex;
    align-items: center;
    text-align: center;
    height: 50px;
    width: 50px;
    border: 1px solid #C1C1C1;
    border-radius: 4px;
    padding: .5rem;
    margin-right: .5rem;

    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #000;
}




.bordered-container .btn {
    border: 1px solid transparent;
    box-shadow: none;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    text-decoration: none;
}
.bordered-container .btn.btn-primary {
    background-color: var(--btn-color);
    border-color: var(--btn-color);
}
.bordered-container .btn.btn-primary:hover, .bordered-container .btn.btn-primary:active,  .bordered-container .btn.btn-primary:focus {
    background-color: #f93!important;
    border-color: #f93!important;
    outline: none!important;
    box-shadow: none!important;
}
.bordered-container .btn-primary.disabled, .bordered-container .btn-primary:disabled{
    background-color: #f93;
    border-color: #f93;
}


@media(max-width: 300px){
    .center-container{
        width: 100%;
    }
    .bordered-container h1{
        font-size: 28px;
        line-height: 28px;
    }
    .form-check label{
        font-size: 12px;
        line-height: 16px;
    }
}