.btn.btn-theme {
    background: #3B9797;
    color: #fff;
    border: none;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    border: 1.5px solid #3B9797;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn.btn-theme:hover,
.btn.btn-theme:focus,
.btn.btn-theme:active {
    background: #fff;
    border-color: #3B9797;
    color: #3B9797;
}

.regular-text.input-fild {
    border: 1.5px solid #3B9797;
    border-radius: 6px;
}

.regular-text.input-fild:focus,
input[type=checkbox]:focus {
    border: 1.5px solid #3B9797;
    box-shadow: 0 0 0 1px #3B9797;
}

input[type=checkbox]:checked::before {
    content: url(data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233B9797%27%2F%3E%3C%2Fsvg%3E);
}

input[type=checkbox],
input[type=radio] {
    border: 1.5px solid #3B9797;
}