/* General form styling */
.boaction-warranty-portal {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: #fff;
    border-radius: 8px;
}

.boaction-warranty-portal h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.boaction-warranty-portal p {
    margin-bottom: 15px;
}

.boaction-warranty-portal label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.boaction-warranty-portal input[type="text"],
.boaction-warranty-portal input[type="email"],
.boaction-warranty-portal textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    font-size: 16px;
}

.boaction-warranty-portal textarea {
    resize: vertical;
}

.boaction-warranty-portal .required {
    color: #dc3232;
    margin-left: 2px;
}

.boaction-warranty-portal .checkbox-wrapper {
    display: flex;
    align-items: flex-start;
}

.boaction-warranty-portal .checkbox-wrapper input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 10px;
    flex-shrink: 0;
}

.boaction-warranty-portal .checkbox-wrapper label a {
    color: #0073aa;
    text-decoration: none;
}

.boaction-warranty-portal .checkbox-wrapper label a:hover {
    text-decoration: underline;
}

.boaction-warranty-portal button[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boaction-warranty-portal button[type="submit"]:hover {
    background-color: #005177;
}

.boaction-warranty-portal button[type="submit"]:disabled {
    background-color: #a0a0a0;
    cursor: not-allowed;
}

.boaction-warranty-portal .security-note {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-top: 20px;
}

/* Messages */
.boaction-message {
    padding: 10px;
    margin-bottom: