/* Colors */
:root {
    --primary-color: #75266C;
    /* --primary-color: #e71d73; */
    --secondary-color: #39b54a;
    --third-color: #6c757d;
    --gray-color: #e0e0e0;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

/* Typography */
.text-sm {
    font-size: 12px;
}

.text-base {
    font-size: 14px;
}

.text-lg {
    font-size: 16px;
}

.text-xl {
    font-size: 18px;
}

/* Label and Input Styles */
.label {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.input {
    border-radius: 4px;
    border: 1px solid var(--secondary-color);
    padding: 8px;
    font-size: 14px;
}

/* Button Style */
.btn {
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

