html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {  
  background-color:#d2d2d2;  
}

.formulaire {

}

    .formulaire .block {
        border: solid black 1px;
        border-radius: 10px;
        margin: 5px;
        padding: 2px;
        padding-bottom: 10px;
    }

.formulaire .form-label {
    margin:2px;
}

    .formulaire .form-control {
        margin: 2px;
        border-radius: 8px;
    }

.button_right {
    display:flex;
    justify-content:right;
    margin-bottom:10px;
}

.loader {
    display: none;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.loading {
    border: 2px solid #ccc;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border-top-color: #1ecd97;
    border-left-color: #1ecd97;
    animation: spin 1s infinite ease-in;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
