.text-input-element {
    width: 100%;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 5px 10px;
    transition: all 300ms ease-in-out;
}

.text-input-element:focus {
    background-color: white;
    border: 1px solid var(--primary-color);
}

.textarea-element {
    max-width: 100%;
    min-width: 100%;
    min-height: 200px;
    resize: both;
    height: 31px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px 10px;
    transition: border-bottom-color 300ms ease-in-out,
                border-top-color    300ms ease-in-out,
                border-left-color   300ms ease-in-out,
                border-right-color  300ms ease-in-out;
}

.textarea-element:focus {
    background-color: white;
    border: 1px solid var(--primary-color);
}

.text-input-element.gray, .textarea-element.gray {
    background-color: #f7f7f8;
}

.text-input-element.transparent, .textarea-element.transparent {
    background-color: transparent;
}

.custom-a, .custom-a:hover {
    text-decoration: none;
    cursor: pointer;
}

.custom-a.primary {
    color: var(--primary-color);
}

.btn-custom {
    color: white !important;
    background: var(--primary-color) !important;
    border-color:  var(--primary-color) !important;
}

.btn-custom:hover {
    background: var(--primary-color-hover) !important;
    border-color: var(--primary-color-hover) !important;
}

.text-c-primary {
    color: var(--primary-color) !important;
}