/**
 * Stampede Form Styles
 */

.stampede-form-wrapper {
    max-width: 740px;
    margin: 0 auto;
    padding: 20px;
}

.stampede-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stampede-form-row {
    width: 100%;
}

.stampede-form-row--two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stampede-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stampede-form-field label {
    color: #000;
    font-family: "roc-grotesk", Sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 9px 16px;
}

.stampede-form-field label .required {
    color: #e53935;
}

.stampede-form-field input,
.stampede-form-field select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 0px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    border: 1px solid #000;
    /*background-color: #000;
    transform: skew(-19deg);*/
    color: #000;
    font-family: "brother-1816", Sans-serif;
}

.stampede-form-field input:focus,
.stampede-form-field select:focus {
    outline: none;
    /*border-color: #333;*/
}

.stampede-form-field select option {
  background-color: #fff;
  color: #000;
}

.stampede-form-submit {
    padding: 14px 32px;
    background-color: #39FF14;
    color: #000;
    border: none;
    border-radius: 0px;
    border: 2px solid #39FF14;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: "roc-grotesk", Sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: auto;
    display: flex;
    justify-content: space-between;
    width: 220px;
}

.stampede-form-submit:hover, .stampede-form-submit:focus {
    background-color: #000;
    border-color: #39FF14;
    color: #39FF14;
}

.stampede-form-submit:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.stampede-form-submit div{
    /*transform: skew(19deg);*/
}

.stampede-form-disclaimer {
    font-family: "roc-grotesk", Sans-serif;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
    width: 90%;
    margin: 20px auto;
}

.stampede-form-message {
    padding: 16px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

.stampede-form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.stampede-form-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Responsive */
@media (max-width: 600px) {
    .stampede-form-row--two-cols {
        grid-template-columns: 1fr;
    }

    .stampede-form-wrapper {
        padding: 15px;
    }
}
