/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 24 2026 | 04:04:40 */
/* =====================================
   FORM WRAPPER
===================================== */
.normiox-form {
    max-width: 100%!important;
    margin: 0 auto;
}

/* =====================================
   FORCE CF7 WRAPPER FULL WIDTH
===================================== */
.normiox-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* =====================================
   2 COLUMN LAYOUT (STRONG VERSION)
===================================== */
.normiox-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
}

.normiox-form .form-row .form-group {
    flex: 0 0 50%;
    max-width: 50%;
}

/* =====================================
   INPUT / SELECT
===================================== */
.normiox-form input,
.normiox-form select {
    width: 100% !important;
    height: 64px;
    padding: 0px 0px 0px 22px;
    border: 1px solid #ffb502!important;
    border-radius: 16px;
    font-size: 16px;
    color: #667085!important;
    outline: none;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

/* Remove default select arrow styling conflicts */
.normiox-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* =====================================
   TEXTAREA
===================================== */
.normiox-form textarea {
    width: 100% !important;
    height: 180px;
    padding: 16px;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    font-size: 16px;
    color: #667085;
    resize: none;
    outline: none;
    box-sizing: border-box;
    transition: all 0.25s ease;
	margin:0px;
}
.normiox-form p {
	margin:0px;
}

/* =====================================
   PLACEHOLDER
===================================== */
.normiox-form ::placeholder {
    color: #98a2b3;
}

/* =====================================
   FOCUS EFFECT
===================================== */
.normiox-form input:focus,
.normiox-form select:focus,
.normiox-form textarea:focus {
    background: #ffffff;
    border-color: #19c37d;
    box-shadow: 0 0 0 3px rgba(25, 195, 125, 0.1);
}

/* =====================================
   BUTTON
===================================== */
.normiox-form .submit-btn {
    background:#ffb502!important;
    color: #ffffff;
    border: none;
    padding: 18px 60px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.normiox-form .submit-btn:hover {
    background: #ffb502!important;
}

/* =====================================
   FULL WIDTH SECTIONS
===================================== */
.normiox-form .full-width {
    width: 100%;
    margin-bottom: 24px;
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 768px) {
    .normiox-form .form-row {
        flex-direction: column;
    }

    .normiox-form .form-row .form-group {
        flex: 100%;
        max-width: 100%;
    }
}
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

