@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap');

.form-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
    grid-gap: 20px;
}

.ct-shortcode {
    width: 100%;
}

#btn-loading:hover {
    background-color: #F6D4D4 !important;
}

#btn-loading {
    color: #222;
    font-weight: bold;
}

.form-group {
    .form-label {
        display: block;
        font-weight: 500;
    }

    .form-label.required:after {
        color: #f56c6c;
        content: " *";
        margin-left: 3px;
    }

    .form-control {
        width: 100%;
        background-clip: padding-box;
        background-image: none;
        border: 1px solid var(--fluentform-border-color);
        border-radius: var(--fluentform-border-radius);
        color: var(--fluentform-secondary);
        font-family: -apple-system, "system-ui", Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
        line-height: 1;
        margin-bottom: 0;
        max-width: 100%;
        padding: 11px 15px;
        transition: border-color .15sease-in-out, box-shadow .15sease-in-out;
    }
}

.term-n-conditions {
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.2rem;

    label {
        display: flex;
        align-items: start;
        gap: 10px;
    }

    input {
        margin-top: 7px;
    }

    a {
        color: #F6D4D4;
    }
}

.btn-container {
    margin-top: 40px;
    margin-bottom: 50px;
    text-align: center;

    button {
        cursor: pointer;
        text-transform: uppercase;
    }
}

.titre_step_2 {
    text-align: center;
    font-family: 'Playfair Display';
    font-size: 26px;
    font-weight: 600;
    color: #F6D4D4;
    margin-bottom: 30px;
}

.form-step-content {
    background: #313230;
    color: white;
    text-align: center;
    padding: 30px;
    font-weight: bold;
}

.loading {
    pointer-events: none;
    opacity: 0.7;
}
.loader {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 425px) {


}

@media only screen and (max-width: 375px) {
    .form-container {
        grid-template-columns: repeat(1, 1fr);
    }
}