:root {
    --bg-white: #feed85;
    --bg-dark: #333;
}

body {
    background: var(--bg-white);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.login-box {
    margin-top: 75px;
    height: auto;
    background: var(--bg-white);
    text-align: center;
    box-shadow: 0 3px 6px var(--bg-white), 0 3px 6px var(--bg-white);
}

.login-key {
    height: 100px;
    font-size: 80px;
    line-height: 100px;
    background: -webkit-linear-gradient(var(--bg-white), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-danger {
    color: #fff !important
}

label {
    font-size: 25px;
}

.block-btn {
    padding-bottom: 5%;
}

.login-title {
    margin-top: 15px;
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
    margin-top: 15px;
    font-weight: bold;
    color: #949694;
}

.login-form {
    margin-top: 25px;
    text-align: left;
}

.footer {
    padding-top: 25%
}

select option {
    color: #000;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

input[type=text] {
    border: none;
    border-radius: 0px;
    font-weight: bold;
    outline: 0;
    margin-bottom: 20px;
    padding-left: 0px;
    color: #949694;
}

input[type=password] {
    border: none;
    border-radius: 0px;
    font-weight: bold;
    outline: 0;
    padding-left: 0px;
    margin-bottom: 20px;
    color: #949694;
}

.form-group {
    margin-bottom: 40px;
    outline: 0px;
}

.alert-success,
.alert-danger {
    margin-top: 3%;
}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 2px solid #949694;
    outline: 0;
    color: #949694;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0;
}

label {
    margin-bottom: 0px;
}

.form-control-label {
    font-size: 10px;
    color: #949694;
    font-weight: bold;
    letter-spacing: 1px;
}

.btn-outline-primary {
    border-color: #949694;
    color: #949694;
    border-radius: 0px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 1px 3px var(--bg-white), 0 1px 2px var(--bg-white);
}

.btn-outline-primary:hover {
    background-color: #949694;
    right: 0px;
    color: var(--bg-white)
}

.login-btm {
    float: left;
}

.login-button {
    padding-right: 0px;
    text-align: right;
    margin-bottom: 25px;
}

.login-text {
    text-align: left;
    padding-left: 0px;
    color: #949694;
}

.loginbttm {
    padding: 0px;
}

.frame {
    color: #fff;
}

.center {
    width: 100px;
    height: 100px;
}

.dot-1 {
    position: absolute;
    z-index: 3;
    width: 20px;
    height: 20px;
    left: 85px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: jump-jump-1 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
    animation: jump-jump-1 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

.dot-2 {
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    top: 55px;
    left: 75px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: jump-jump-2 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
    animation: jump-jump-2 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

.dot-3 {
    position: absolute;
    z-index: 1;
    width: 60px;
    height: 60px;
    top: 45px;
    left: 65px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: jump-jump-3 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
    animation: jump-jump-3 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

@-webkit-keyframes jump-jump-1 {
    0%,
    70% {
        box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes jump-jump-1 {
    0%,
    70% {
        box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes jump-jump-2 {
    0%,
    40% {
        box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes jump-jump-2 {
    0%,
    40% {
        box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes jump-jump-3 {
    0%,
    10% {
        box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes jump-jump-3 {
    0%,
    10% {
        box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.btn-warning {
    color: #fff
}

.red-call {
    background-color: rgba(255, 0, 0, 0.1);
}

.green-call {
    background-color: rgba(0, 255, 0, 0.1);
}

.menu {
    margin: auto
}

#phone,
#reject,
#autre-input,
#hour_call {
    font-weight: 100;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.btn-yellow {
    background-color: var(--bg-white);
    border-color: var(--bg-white);
    color: #000;
    font-weight: bold;
}

.hidden {
    display: none;
}