@import url('../../../../css2');

.tcf-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Raleway', sans-serif;
}

.tcf-form-container {
    padding-top: 10px;
}

.tcf-field-group {
    margin-bottom: 20px;
    position: relative;
}

.tcf-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.tcf-required {
    color: #f05b29;
    margin-left: 4px;
}

.tcf-input,
.tcf-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    background-color: #fff;
}

.tcf-select {
    height: 43px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23333' stroke-width='2' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
}

.tcf-currency-input {
    position: relative;
}

.tcf-currency-input input {
    padding-left: 25px;
}

.tcf-currency-symbol {
    position: absolute;
    left: 10px;
    top: 11px;
    font-weight: 600;
}

.tcf-submit-btn {
    background-color: transparent;
    color: #f05b29;
    border: 2px solid #f05b29;
    padding: 12px 30px;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.tcf-submit-btn:hover {
    background-color: #f05b29;
    color: white;
}

/* Modal Styles */
.tcf-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.tcf-modal-container {
    background-color: white;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 5px;
    position: relative;
}

.tcf-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.tcf-modal-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.tcf-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.tcf-success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.tcf-error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@media (max-width: 768px) {
    .tcf-container {
        padding: 10px;
    }
    
    .tcf-submit-btn {
        width: 100%;
    }
    
    .tcf-modal-container {
        width: 95%;
        padding: 20px;
    }
}