:root {
    --primary-color: #f2a100;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    display: grid;
    /*place-items: center;*/
    min-height: 100vh;
}

/* Global Styling */
input.form-control,
select.form-control
{
    display: block;
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}
.form-control:focus {
    border-color: var(--primary-color);
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: 0.8s all ease;
}
label
{
    display: block;
    margin-bottom: 0.5rem;
}

.register_bloc {
    background: #FFF;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    border-radius: 10px;
}


.btn-x {
    padding: 0.5rem 1.5rem;
    display: block;
    text-decoration: none;
    background-color: var(--primary-color) ;
    color: #f3f3f3;
    text-align: center;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
    margin: 0 0.5rem;
    animation: animate .5s;
    transform-origin: top;
}

.btn-x:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

@keyframes animate {
    from {
        transform: scale(1, 0);
        opacity: 0;
    }
    to {
        transform: scale(1, 1);
        opacity: 1;
    }
}