html,
body {
    height: 100%;
}

body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;

    background-image: url("/public/img/bg-trees-icons.png");
    background-size: contain;
    background-repeat: repeat;
}

.form-signin {
    width: 100%;
    max-width: 1200px;
    padding: 15px;
    margin: auto;
}

.btn-primary {
    background-color: #e96227 !important;
    border-color: #e96227 !important;
}

.btn-primary:hover {
    background-color: #b3491a !important;
    border-color: #b3491a !important;
}

.form-control, .btn {
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #e96227 !important;
}

a {
    color: #e96227 !important;
}

a:hover {
    color: #b3491a !important;
}

.label-img {
    text-align: center;
    padding: 1rem;
    /*box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);*/
    border-radius: .3rem;
    border: 1px solid #dee2e6;
    transition: all .2s ease-in-out;

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.label-img:hover {
    background-color: #f7eae5;
    border-color: #e96227;
}

.label-img input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.label-img:has(input[type="radio"]:checked) {
    background-color: #f6dcd0;
    border-color: #e96227;
}

.label-img:has(input[type="radio"]:checked) span {
    font-weight: bold;
}


.popover {
    max-width: 360px !important;
}