/*****************************/
/** Wartości custom dla widoku: Logowanie za pomocą hasła  **/
/*****************************/

#LoginByPasswordView {
    background-color: rgba(255,255,255,1);


    button {
        background-color: #0360AF !important;
        color: #ffffff;
        font-size: 16px;
        border-radius: 20px;
        width: 100%;

        &:focus {
            box-shadow: 0 0 0 .2rem #0360AF40;
        }

        &:hover {
            background-color: #0360AFcc !important;
        }
    }

    .form-control {
        color: #000000;
        background-color: transparent;
        font-size: 16px;
        border-radius: 0px;

        &:focus {
            box-shadow: 0 0 0 .2rem transparent40;
        }

        &:hover {
            background-color: transparentcc;
        }
    }

    #header-text {
        color: #6a6a6a;
        font-size: 12px;
    }
}

/*****************************/
/** Wartości custom dla widoku: Odliczanie w kafelkach  **/
/*****************************/

#CountdownTiles {

    .countdown .figure>span,
    .figure>span,
    .count-title,
    .countdown .figure .top,
    .countdown .figure .top-back,
    .countdown .count-title,
    .countdown .figure .bottom-back {
        color: #FFFFFF;
    }

    .countdown {
        .figure {

            &.days .top,
            &.days .bottom-back,
            &.hours .top,
            &.hours .bottom-back,
            &.minutes .top,
            &.minutes .bottom-back,
            &.seconds .top,
            &.seconds .bottom-back {
                background-color: #558CBA;
            }

            &.days,
            &.days .bottom,
            &.days .top-back,
            &.hours,
            &.hours .bottom,
            &.hours .top-back,
            &.minutes,
            &.minutes .bottom,
            &.minutes .top-back,
            &.seconds,
            &.seconds .bottom,
            &.seconds .top-back {
                background-color: #68ACE5;
            }

        }

        .count-title {
            color: #FFFFFF;
            font-size: 12px;
        }
    }

    .timer-title {
        font-size: 14px;
        color: #FFFFFF;
        margin-bottom: 16px !important;
    }

    background-color: rgba(40,45,49,1);
;
}

/*****************************/
/** Wartości custom dla widoku: Standardowy formularz rejestracji  **/
/*****************************/

section:has(#RegistrationView) {
    background-color: transparent;

}

#RegistrationView {

    .registrationStepName {
        text-align: left;
        color: #0d0d0d;
    }

    .card .card-header {
        background-color: transparent;

    }

    .card .card-body {
        background-color: transparent;

    }

    .card {
        border-color: #CDCDCD00;
    }

    label:not(.errors) {
        color: #282D31;
        font-size: 16px;
    }

    hr {
        color: #0d0d0d;
        background-color: #0d0d0d;
    }

    .form-control {
        color: #282D31;
        background-color: #00000000;
        transition: 0.3s;
        font-size: 16px;
        border-radius: 0px;

        &:focus {
            box-shadow: 0 0 0 .2rem #0000000040;
        }

        &:hover {
            background-color: #00000000ee;
        }
    }

    #FinishButton {
        color: #FFFFFF;
        background-color: #0360AF;
        border-color: #0360AF;
        transition: 0.3s;

        &:focus {
            box-shadow: 0 0 0 .2rem #0360AF40;
        }

        &:hover {
            background-color: #0360AFcc;
        }
    }

    .abc-checkbox input[type="checkbox"]:checked+label::before,
    .abc-radio input[type="radio"]:checked+label::after {
        background-color: #282D31;
        border-color: #282D31;
    }

    .abc-radio input[type="radio"]:checked+label::before {
        border-color: #282D31;
    }

}

