/* Main container styling */
.promo-container {
    gap: 32px;
    font-family: "Urbanist", sans-serif;
}

/* Form styling */
.promo-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 450px;
    width: 100%;
}

.promo-footer {
    font-size: 14px;
    padding: 23px 0px;
    border-top: 1px solid #f1f1f1;
}

/* TnC */
.promo-tnc {
    border-radius: 8px;
    padding: 24px;
    gap: 18px;
    font-family: Urbanist;
    box-shadow: 0px 4px 8px 0px #33353814;
    box-shadow: 0px 1px 4px 0px #3335381f;
}
.promo-tnc-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
}
.promo-tnc-subtitle {
    font-weight: 700;
    font-size: 14px;
    line-height: 22.4px;
}
.promo-tnc-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
}

/* Form group spacing */
.form-group {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-label {
    font-family: Urbanist;
    font-weight: 600;
    font-size: 14px;
    line-height: 22.4px;
    color: #333538;
    opacity: 0.7;
}

/* Alert styling */
#error {
    opacity: 1;
    height: 40px;
    background-color: rgb(255 204 204) !important;
    color: black;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid red;
    border-radius: 8px;
}

/* Input styling */
#dji-promo-form input {
    height: 40px;
    border: 1px solid #dedede;
    border-radius: 8px !important;
    padding: 10px 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
}

#dji-promo-form input:hover {
    box-shadow: none !important;
}

#dji-promo-form input:focus {
    box-shadow: 0 0 0 1px rgb(0, 58, 119) !important;
}

#dji-promo-form input::placeholder {
    color: #aaaaaa;
}

#dji-promo-form input::-ms-input-placeholder {
    color: #aaaaaa;
}

/* Submit button styling */
.promo-submit {
    background: #003a77;
}

/* Spinner display utility */
.d-none {
    display: none;
}
