.warranty-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 30px;
    background: #ffffff;
}

.warranty-form {
    padding: 10px;
    background: #ffffff;
    padding-top: 35px;
}

.form-logo {
    text-align: center;
    margin-bottom: 15px;
    padding-top: 10px;
}

.logo-image {
    max-width: 120px;
    height: auto;
}

.warranty-form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 0px;
    font-weight: 600;
    color: #000;
    font-size: 15px;
}

.radio-group {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
    margin-bottom: 0;
    font-size: 6px;
}

.radio-label input[type="radio"] {
    margin-right: 6px;
    width: auto;
    margin-bottom: 0;
}

.radio-label span {
    font-weight: normal;
    color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    background: #fff;
}

.form-group input[type="file"] {
    padding: 8px;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666;
}

.form-group input::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #333;
}

.submit-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

.form-footer-text {
    margin-top: 20px;
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    text-align: left;
}

.form-message {
    margin: 15px 0;
    padding: 12px;
    border-radius: 4px;
    display: none;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    position: relative;
    text-align: center;
    animation: slideDown 0.3s;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

.close-modal:hover {
    color: #000;
}

.modal-content h2 {
    color: #28a745;
    font-size: 32px;
    margin-bottom: 20px;
}

.modal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-btn {
    background: #000;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.modal-btn:hover {
    background: #333;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #000000 !important;
    border-radius: 4px !important;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    background: #fff;
}

.form-group label {
    display: block;
    margin-bottom: 0px;
    font-weight: 600;
    color: #000;
    font-size: 13px;
}

h2 {
    margin: 25px 0 17px !important;
}

select {
    font-size: 15px;
    line-height: 2;
    color: #050303 !important;
}

input[type="radio"], input[type="checkbox"] {
    margin: 0px 0 0 !important;
    
}

