﻿:root {
    --light-color: #fff;
    --dark-color: #000;
    --main-text-color: #313131;
    --primary-color: #14133b;
    --danger-color: #f86b6b;
    --field-bg-color: #f2f4f7;
    --white-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    font-family: ElectroluxSansRegular;
}

.form-control {
    border-radius: 0 !important;
}

body {
    background-image: url("../images/LandingBackground.png");
    display: flex;
    flex: 1;
    /*background-position: center center;*/
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    background-size: cover;
    justify-content: center;
    height: 100%;
    padding: 1.5em;
    position: relative;
    height: calc(100vh); 
    height: calc((var(--vh, 1vh) * 100));
}

.app__title {
    height: 74px;
    font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.23;
    letter-spacing: normal;
    text-align: left;
    color: var(--white-color);
}

.backdrop-registration {
    width: 100%;
    height: 78vh;
    background-color: var(--light-color);
    position: fixed;
    bottom: 0;
    /*border-radius: 15px 15px 0 0;*/
    padding: 0;
    color: var(--dark-color);
}

.backdrop-login {
    width: 100%;
    height: 72vh;
    background-color: var(--light-color);
    position: fixed;
    bottom: 0;
    /*border-radius: 15px 15px 0 0;*/
    padding: 0;
    color: var(--dark-color);
}


    .backdrop-registration > div, .backdrop-login > div {
        padding: 10px 20px;
        overflow-y: auto;
        margin-left: -5px;
        height: 100%;
    }

.title {
    height: 37px;
    font-family: ElectroluxSansRegular;
    font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.23;
    letter-spacing: normal;
    text-align: left;
    color: var(--light-color);
}

.sub-title {
    height: 37px;
    font-family: ElectroluxSansRegular;
    font-size: 25px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: var(--dark-color);
    padding-top: 4vh;
}

.field-label {
    font-family: ElectroluxSansSemibold;
    font-size: 14px;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.16;
    letter-spacing: normal;
    text-align: left;
    color: var(--main-text-color);
}

.alert-danger {
    color: var(--light-color);
    background-color: var(--danger-color);
    border-color: var(--danger-color);
    opacity: 0.88;
    border-radius: 15px;
/*    position: absolute;
*/    width: 100%;
}

.btn-outline-primary {
    /*border-radius: 30px;*/
    border-color: var(--white-color);
    color: var(--white-color);
    width: 334px;
}

    .btn-outline-primary:hover {
        color: var(--light-color);
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        opacity: 0.90;
    }

    .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle {
        color: var(--light-color);
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

.btn-primary {
    /*border-radius: 30px;*/
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 334px;
}

    .btn-primary:hover {
        color: var(--light-color);
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        opacity: 0.90;
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #fff;
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

.form-registration, .form-login {
    margin-bottom: 10px;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--main-text-color);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    height: 35px;
    opacity: 0.75;
    border-radius: 15px;
    background-color: var(--field-bg-color);
}

    .form-control:focus {
        color: var(--main-text-color);
        background-color: var(--field-bg-color);
        border-color: #ced4da;
        outline: 0;
        box-shadow: none;
    }

.languages__item {
    margin: 10px 0;
}

.languages__img {
    width: 34px;
    height: 23px;
    object-fit: contain;
    margin: 0 10px 0 0;
}

.languages__link {
    font-size: 1.2rem;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.23;
    letter-spacing: normal;
    text-align: left;
    color: var(--white-color);
}

.white {
    color: var(--white-color);
}

.ckb-container {
    display: block;
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: ElectroluxSansSemibold;
    font-size: 14px;
    font-stretch: normal;
    font-style: normal;
}

    /* Hide the browser's default checkbox */
    .ckb-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--field-bg-color);
    border: 1px solid #ced4da;
}

/* On mouse-over, add a grey background color */
.ckb-container:hover input ~ .checkmark {
    background-color: var(--primary-color);
}

/* When the checkbox is checked, add a blue background */
.ckb-container input:checked ~ .checkmark {
    background-color: var(--field-bg-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.ckb-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.ckb-container .checkmark:after {
    left: 6px;
    top: 3px;
    width: 7px;
    height: 10px;
    border: solid var(--primary-color);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
