/* 1) Transparent form wrapper */
# wpcf7-f4738-p4740-o1 form,
.wpcf7-form {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.bg-container {
	background: linear-gradient(
 
352deg, rgb(6 6 6 / 30%), rgb(48 46 46 / 90%)), url(https://rockinreplicas.com/wp-content/uploads/2026/01/TWinder.jpg?id=4612);
}
.bg-container-stratocaster
{
	background: linear-gradient(
 
352deg, rgb(6 6 6 / 30%), rgb(48 46 46 / 90%)), url(https://rockinreplicas.com/wp-content/uploads/2026/01/TWinder2.jpg?id=4613);
}

/* 2) Transparent frosted glass style for fields */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    padding: 12px !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    margin-bottom: 0px !important;
}

.wpcf7-form select option {
    background-color: #111 !important; /* dark instead of white */
    color: #ffffff !important;
}

/* 3) Placeholder text */
/* Placeholder color – all browsers */
.wpcf7-form ::placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Chrome, Edge, Safari */
.wpcf7-form ::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Firefox */
.wpcf7-form ::-moz-placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Internet Explorer (old, optional) */
.wpcf7-form :-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
}


/* 4) Label text styling */
.wpcf7-form label,
.wpcf7-form h3,
.wpcf7-form hr,
.wpcf7-form h4,
.wpcf7-form strong {
    color: #fff !important;
    display: block !important;
    margin-bottom: 6px;
    font-weight: bold;
}
.wpcf7-form em
{
	font-size:10px;
	font-weight:normal;
	color:#fff;
}
.wpcf7-form h3
{
	font-size:24px;
}
.wpcf7-form hr
{
	margin-bottom:25px !important;
	}

/* 6) Submit button style */
.wpcf7-form input[type="submit"] {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(6px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
    padding: 14px 25px !important;
    font-size: 16px !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
	float:right;
	min-width:300px;
}

/* Remove extra bottom margin */
.wpcf7-form .wpcf7-form-control-wrap,.wpcf7-form p {
    margin-bottom: 10px !important;
}
.wpcf7-form input[type="submit"]:hover {
    background: rgba(255, 255, 255, 0.35) !important;
}
/* Two-column grid */

.wpcf7-form .cf7-two-col .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7-form .cf7-two-col br {
    display: none;
}

.wpcf7-form .cf7-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.wpcf7 .cf7-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.wpcf7 .cf7-col {
  width: calc(50% - 10px);
}
.wpcf7 .cf7-col br {
    display: none;
}
.wpcf7 .cf7-col label {
  display: block;
  margin-bottom: 0px;
}
/* 7. Responsive: stack on mobile */
@media (max-width: 768px) {
    .wpcf7-form .wpcf7-form-control-wrap {
        width: 100% !important;
        margin-right: 0 !important;
        display: block !important;
    }
	.wpcf7-form .cf7-two-col {
        grid-template-columns: 1fr !important;
    }
	.wpcf7 .cf7-col {
    width: 100%;
  }
}
@media (max-width: 479px) {
    .slider_boxed, .content_wrap, .content_container {
        width: 390px !important;
    }
}
/* Labels inside grid */
.wpcf7-form .cf7-two-col label {
    width: 100%;
}

.wpcf7-form .cf7-two-col input[type="radio"] , input[type="checkbox"]{
    width: auto !important;
}

