.striker-form-container {
    padding: 30px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-family: inherit;
}

.striker-form-title {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}

.striker-form-subtitle {
    margin: 0 0 24px 0;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.striker-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.striker-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.striker-form-row .striker-form-group {
    margin-bottom: 0;
}

.striker-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #444444;
    margin-bottom: 6px;
}

.striker-form-group input,
.striker-form-group textarea {
    padding: 10px 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    background-color: #fafafa;
}

.striker-form-group input:focus,
.striker-form-group textarea:focus {
    border-color: #333333;
    background-color: #ffffff;
}

.striker-form-submit {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background-color: #e31b23; /* Australia Striker Truck Red Theme */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.striker-form-submit:hover {
    background-color: #b3141a;
}

.striker-form-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.striker-form-response {
    margin-top: 15px;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.striker-form-response.success {
    background-color: #e6f7ed;
    color: #1e7e34;
    border: 1px solid #c3e6cb;
}

.striker-form-response.error {
    background-color: #fdf2f2;
    color: #dc3545;
    border: 1px solid #f5c6cb;
}
