:root {
    --black: #000;
    --white: #fff;

    --gray: #B1B1B1;
    --gray-light: #EAEAEA;
    --gray-dark: #6C6C6C;
    --dark: #212121;
}
body {
    background-color: transparent;
}
.btn {
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    padding: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.1px;
    transition: color 0.4s, border 0.3s;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 24px;
    width: 100%;
    border: none;
    max-width: 458px;
    width: 100%;
}
.btn_form {
    font-weight: bold;
    color: var(--white);
    background-color: var(--dark);
}
.btn_form:hover {
    color: var(--white);
    background-color: var(--gray-dark);
    border-color: var(--gray-dark);
    border: none;
}
input[type=email],
input[type=text],
select {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 0.813rem;
    line-height: 2.65;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-light);
    color: var(--dark);
    margin-bottom: 8px;
    outline: none;
    padding: 0;
    text-indent: 0;
    width: 100% !important;
}
input::placeholder {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    color: var(--gray);
    opacity: 1;
}
.form .label_input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(0%);
    font-size: 0.813rem;
    line-height: 2;
    color: #B1B1B1;
    pointer-events: none;
    transition: 0.25s ease all;
}
.form .form-control {
    font-size: 0.813rem;
    border: none;
    border-bottom: 1px solid #EAEAEA;
    border-radius: 0;
    padding-left: 0;
}
.form .form-control::-moz-placeholder {
    font-size: 0.813rem;
    color: #B1B1B1;
}
.form .form-control::placeholder {
    font-size: 0.813rem;
    color: #B1B1B1;
}
.form .form-control:not(:-moz-placeholder-shown)+label {
    top: -1rem;
}
.form .form-control:focus+label,
.form .form-control:not(:placeholder-shown)+label {
    top: -1rem;
}
.form .form-control:focus {
    box-shadow: none;
    border-bottom-color: #212121;
}
.form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23B1B1B1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    color: #B1B1B1;
}
.form textarea.form-control {
    border: 1px solid #EAEAEA;
}
div.form .form-group {
    position: relative;
}
div.form .label_input {
    color: var(--gray);
}
div.form .input input:not(:-moz-placeholder-shown)+label {
    top: -1rem;
}
div.form .input input:focus+label,
div.form .input input:not(:placeholder-shown)+label {
    top: -1rem;
}
div.form .input input:focus {
    border-bottom-color: var(--dark);
}
.btn.btn-cta.is-light, .btn.btn-cta.is-light, .btn.btn-cta.is-light {
    border: 1px solid var(--white);
}
.btn.btn-cta.is-light:hover, .btn.btn-cta.is-light:focus, .btn.btn-cta.is-light:active {
    border: 1px solid var(--white);
}
.cs-tec-alerta {
    font-size: 1rem;
    background-color: var(--dark);
}