@font-face {
    font-family: 'DINPro';
    src: url('../fonts/DINPro-Medium.otf') format('opentype');
    font-weight: 500; /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'DINPro';
    src: url('../fonts/DINPro-Bold.otf') format('opentype');
    font-weight: 700; /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'DINPro';
    src: url('../fonts/DINPro-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

div.container.dinpro {
    font-family: 'DINPro', sans-serif;
}

div.row.orange-row {
    background-color: #df6131;
    color: #fff;
}

div.row.orange-row > :last-child {
    margin-bottom: 5rem;
}

h1.h2.font-weight-bold {
    font-size: 2rem;
}

div.row.form-row {
    padding: 0 5rem;
}

@media (max-width: 576px) {
    div.row.form-row {
        padding: 0 3rem;
    }
}

input[type="text"], input[type="number"], select {
    width: 100%;
    height: 3.5rem !important;
    border: 1px solid #ddd;
    border-radius: 2rem;
    background-color: #f2f2f2 !important;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
    padding: 1rem;
}

input::placeholder, .form-control::placeholder {
    color: #000000 !important;
}

input:focus, select#province:focus, textarea#message:focus {
    outline: none;
    border-color: #4795ba;
    box-shadow: 0 2px 8px rgba(0, 153, 179, 0.2);
}

select#province:invalid {
    color: #9c9fa1;
}

.offset-input-container {
    position: relative;
    top: -2rem;
    margin-bottom: -2rem;
}

label[for="first_name"] {
    color: #ffffff;
}

label.label-fg-color {
    color: #343a40;
}

@media (min-width: 992px) {
    label.label-fg-color {
        color: #ffffff;
    }
}

textarea#message {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0.15rem;
    background-color: #f2f2f2 !important;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
}

button#send {
    display: block;
    background-color: #df6131;
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    margin: 0 auto 3rem auto;
    padding: 0.75rem 5rem;
    font-size: 1.75rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease-in-out;
}

input[type="checkbox"] {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
    border: 1px solid #ddd;    /* Vora similar als altres inputs */
    border-radius: 0.15rem;    /* Consistència amb altres inputs */
}

input[type="checkbox"]#terms {
    width: 2rem;
    height: 2rem;
}

input[type="checkbox"]:checked {
    accent-color: #df6131;
}

label[for="terms"] {
    font-size: 0.75rem;
}

label[for="terms"] > a {
    color: #df6131;
}

label[for="terms"]+p {
    font-size: 0.9rem;
}

.bg-grey {
    background-color: #F4F4F4;
}
