.onos-web-form-container {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.onos-web-form {
    width: 100%;
    box-sizing: border-box;
}

.onos-contact-header {
    margin-bottom: 30px;
}

.onos-contact-header h2 {
    font-size: 24px;
    color: #1a1e3d;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.onos-contact-header p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.onos-web-form .onos-form-group {
    margin-bottom: 20px;
}

.onos-web-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.onos-web-form input[type="text"],
.onos-web-form input[type="email"],
.onos-web-form input[type="tel"],
.onos-web-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    background-color: #f8fafd;
    font-size: 15px;
    transition: border-color 0.3s, background-color 0.3s;
}

.onos-web-form input:focus,
.onos-web-form textarea:focus {
    outline: none;
    border-color: #007bff;
    background-color: #fff;
}

.onos-web-form textarea {
    height: 120px;
    resize: vertical;
}

/* File Upload Style */
.file-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.file-input-wrapper .file-btn {
    padding: 10px 20px;
    border: 2px solid #000;
    border-radius: 8px;
    background: #fff;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.file-input-wrapper .file-btn:hover {
    background: #f0f0f0;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 130px;
    height: 100%;
    cursor: pointer;
}

.file-input-wrapper .file-name {
    font-size: 14px;
    color: #666;
}

/* Deadline Text */
.onos-deadline-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* reCAPTCHA Placeholder */
.onos-recaptcha {
    margin-bottom: 25px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    display: inline-block;
    border-radius: 4px;
}

.g-recaptcha-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.g-recaptcha-placeholder input {
    width: 20px;
    height: 20px;
}

/* Submit Button */
.onos-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #1a1e3d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.onos-submit-btn:hover {
    background-color: #2a2f5d;
}

.onos-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Status Messages */
.onos-form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 6px;
    display: none;
    font-size: 14px;
}

.onos-form-message.success {
    display: block;
    background-color: transparent;
    color: #1a1e3d;
    border: none;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    padding: 40px 20px;
    line-height: 1.4;
}

.onos-form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .file-input-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .file-input-wrapper .file-btn {
        width: 100%;
        text-align: center;
    }

    .onos-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
        max-width: 100%;
        overflow: hidden;
    }
}
