.repair-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.repair-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.repair-form .form-group {
    margin-bottom: 15px;
}

.repair-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.repair-form .required {
    color: red;
    margin-right: 3px;
}

.repair-form input[type='text'],
.repair-form input[type='email'],
.repair-form input[type='tel'],
.repair-form input[type='password'],
.repair-form select,
.repair-form textarea {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.repair-form textarea {
    height: 120px;
    resize: vertical;
}

.repair-form button,
.repair-form input[type='submit'] {
    background-color: #4e6894;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.repair-form button:hover,
.repair-form input[type='submit']:hover {
    background-color: #3a5070;
}

.repair-form .message {
    padding: 10px;
    margin: 15px 0;
    border-radius: 4px;
}

.repair-form .success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.repair-form .error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.repair-form .form-step {
    display: none;
}

.repair-form .form-step.active {
    display: block;
}

.repair-form #canvas-signature {
    border: 1px solid #ddd;
    width: 100%;
    height: 200px;
    cursor: crosshair;
    background-color: #fff;
}

.repair-form .signature-buttons {
    margin-top: 5px;
    text-align: right;
}

.repair-form .terms-container {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.repair-form .next-btn {
    background-color: #4e6894;
    color: white;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.repair-form .form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.repair-form .back-btn,
.repair-form .submit-btn {
    flex: 1;
    margin: 0 5px;
}

.repair-form .error-field {
    border: 1px solid #f00 !important;
}