
.wrap_input {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-text);
}

input,
select,
textarea,
button {
	appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
	font-family: var(--font-primary);
} 

select {
    background: transparent;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 3px;
    color: var(--color-text-dark);
}

input,
select,
textarea {
	height: 50px;	
	padding: 0 20px;
	font-size: 16px;
	color: var(--color-text);
    border-radius: var(--border-radius-sm);	
    border: 1px solid var(--color-border);
	background: #ffffff;
}

textarea {
	padding: 20px;
    height: 100px;
    resize: none;
}

.submit {
    height: 50px; 
    font-size: 14px;
    font-weight: 500;
	border: 0;
	cursor: pointer;    
    color: #ffffff;
    padding: 0 20px;
    border-radius: var(--border-radius-sm);
    background: var(--color-background-dark);
}


/* radio / check */
.custom_radio input, 
.custom_checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* Estilo para o container do input */
.custom_radio, .custom_checkbox {
    display: inline-block;
    position: relative;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
}

/* Estilo do "fake" radio button */
.custom_radio input[type="radio"] + i,
.custom_checkbox input[type="checkbox"] + i {
    display: block;
    height: 20px;
    width: 20px;
    margin-right: 5px;
    background-color: #ffffff;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.custom_radio span,
.custom_checkbox span {
    width: calc(100% - 25px);
}

/* Estilo do "fake" check button */
.custom_checkbox input[type="checkbox"] + i {
    border-radius: 3px;
}

/* Estilo quando o input estÃ¡ marcado */
.custom_radio input[type="radio"]:checked + i:after,
.custom_checkbox input[type="checkbox"]:checked + i:after {
    display: block;
}

/* Pseudo-elemento para o checkmark */
.custom_radio input[type="radio"] + i:after,
.custom_checkbox input[type="checkbox"] + i:after {
    content: "";
    position: absolute;
    display: none;
}

.custom_radio input[type="radio"] + i:after {
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-dark);
}

.custom_checkbox input[type="checkbox"] + i:after {
    left: 4px;
    top: 0px;
    width: 7px;
    height: 12px;
    border: solid var(--color-text-dark);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.custom_select {
    position: relative;
}

.custom_select select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2'/%3E%3C/svg%3E");    
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}


/* CSS RESPONSIVE */
@media (max-width: 900px) { }

@media (max-width: 500px) { }



