/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 10 2025 | 08:02:16 */
/* Modern CF7 Container */
.modern-cf7 {
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
    box-sizing: border-box;
}

/* Row Layout */
.modern-cf7 .cf7-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

/* Column Layout: MOBILE-FIRST (100% width) */
.modern-cf7 .cf7-col {
    width: 100%;
    flex: 0 0 100%; /* Be 100% wide by default */
    padding-left: 10px;  /* Gutter */
    padding-right: 10px; /* Gutter */
    box-sizing: border-box;
    /* THIS ADDS THE VERTICAL SPACING! */
    margin-bottom: 20px;
}

.wpcf7 input[type="text"], .wpcf7 input[type="tel"], .wpcf7 input[type="email"] {
	width: 100%;
}

/* --- 💻 DESKTOP MEDIA QUERY --- */
/* When screen is 768px or WIDER, apply these styles */
@media (min-width: 768px) {
  
    /* Make columns 50% width on desktop */
    .modern-cf7 .cf7-col {
      flex-basis: 50%; /* Each column takes up 50% */
    }

    /* But force full-width columns to stay 100% */
    .modern-cf7 .cf7-col.cf7-col-full {
      flex-basis: 100%;
    }
}
/* --- End Media Query --- */


/* Input & Select Styling */
.modern-cf7 input[type="text"],
.modern-cf7 input[type="email"],
.modern-cf7 input[type="tel"],
.modern-cf7 select,
.modern-cf7 textarea {
    width: 100%;
	color: black;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f8f9fa;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box; 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Style for dropdown arrow */
.modern-cf7 select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-13%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2013l128%20128c3.6%203.6%207.8%205.4%2013%205.4s9.4-1.8%2013-5.4l128-128c3.6-3.6%205.4-7.8%205.4-13%200-5-1.8-9.3-5.4-13z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 10px auto;
}

.modern-cf7 input:focus,
.modern-cf7 select:focus,
.modern-cf7 textarea:focus {
    background: #fff;
    border-color: #666;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    outline: none;
}

.modern-cf7 textarea {
    resize: vertical;
    height: 120px;
}

/* OTP Section Specifics */
.modern-cf7 .otp-wrapper {
    background: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
	display: none;
}

.modern-cf7 .otp-btn {
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 16px;
}

.modern-cf7 .otp-btn:hover {
    background-color: #357abd;
}

.modern-cf7 .verify-code-input {
    margin-top: 15px;
}

/* Submit Button */
.modern-cf7 input[type="submit"] {
    padding: 15px 40px;
    background-color: #114992 !important;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto; 
}

.modern-cf7 input[type="submit"]:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}