/* Texte */

html, body {
    font-family: 'Roboto', sans-serif;
    color: rgb(112,112,111);
}

footer {
    text-align: center;
    font-size: 12px;
}

.modal-title i {
    color: #94c11f !important;
}

/* Texte */

/* Buttons */

.btn-outline-primary {
    border-color: #94c11f !important;
    color: #94c11f !important;
}

.btn-outline-primary:hover {
    background-color: #94c11f !important;
    color: #FFFFFF !important;
}

.btn-primary-1 {
    background-color: #94c11f !important;
    color: #FFFFFF !important;
    border-color: #94c11f !important;
}

.btn-primary-2 {
    background-color: #f39200 !important;
    color: #FFFFFF !important;
    border-color: #f39200 !important;
}

.btn-primary-1:hover, .btn-primary-2:hover {
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

/* Buttons */

/* Container */

@media (min-width: 768px) {
    .logincontainer {
        border-radius: 10px;
        border: 1px solid #eeeeee;
        box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
        width: 50%;
    }
}

/* Container */

/* Spinner */

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #94c11f;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Spinner */