h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: rgb(32, 33, 36);
    font-weight: normal;
}

p {
    text-align: center;
    font-size: 1rem;
    color: #4a5568;
}

label {
    color: #505050;
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
}

.form-title {
    padding-bottom: 20px;
}

.login-form-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
}

.login-form {
    padding: 40px;
    background-color: white;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.forgot-password-privacy-terms-links-container {
    margin-top: 20px;
    font-size: 1rem;
}

.forgot-password-privacy-terms-links-container a {
    margin: 0 5px;
}

input[type="password"],
input[type="email"] {
    margin-bottom: 20px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="date"]:focus,
input[type="url"]:focus,
textarea:focus,
select.styled-select:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: #0366d6;
    outline: none;
}

.login-button {
    width: 100%;
    padding: 5px 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    background-color: #0366d6;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    height: 35px !important;
}

.errorlist {
    color: #dc3545;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    list-style: none;
    padding: 0;
}


/************** Standard html element styling ***************/


html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    flex-direction: column;
    margin: 0;
    box-sizing: border-box;
    background-color: white;
    color: rgb(32, 33, 36);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

main {
    flex-grow: 1;
}

h1 {
    margin: 0;
    text-align: center;
}

h2, h3 {
    margin: 0;
}

a {
    text-decoration: none;
    color: #0366d6;
}

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


/************** Base template styling (elements that are only present on the website base template html file **************/


.main-website-header {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 2px 0;
    display: flex;
    justify-content: center;
    height: 45px;
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
}

.nav-left {
    display: flex;
    gap: 10px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #657786;
    text-decoration: none;
    padding: 8px 12px;
    transition: color 0.2s;
    border-radius: 4px;
    text-align: center;
}

.nav-item:hover {
    color: #0366d6;
    background-color: rgba(21, 48, 125, 0.05);
}

.nav-item i {
    font-size: 1rem;
    margin-bottom: 4px;
}

.nav-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-item.active {
    color: #0366d6;
    font-weight: 600;
}

.left .logo-container {
    display: flex;
    align-items: center;
}

.nav-left .logo-container {
    display: flex;
    align-items: center;
}

.nav-left .logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-left h1 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    color: rgb(32, 33, 36);
    text-align: center;
    background: linear-gradient(135deg, #ff6ec4, #7873f5, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    justify-content: center;
    transition: all 300ms ease;
    cursor: pointer;
}

.nav-left h1 svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    fill: #7873f5 !important;
    color: #7873f5 !important;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(120, 115, 245, 0.3));
}

.nav-right {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-center {
    display: flex;
    flex-direction: row;
}

.main-website-header-login-btn {
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    color: rgb(32, 33, 36);
}

.main-website-header-register-btn {
    font-weight: 500;
    font-size: 0.95rem;
    margin-left: 10px;
    margin-right: 5px;
}

.messenger-link {
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(95, 99, 104);
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
}

.messenger-link:hover {
    color: #0366d6;
    background-color: #dbeafe;
}

.messenger-link i {
    font-size: 1.1rem;
}

.apps-dropdown-container {
    position: relative;
    color: rgb(95, 99, 104);
}

.apps-dropdown-trigger {
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: rgb(95, 99, 104);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background-color: transparent;
}

.apps-dropdown-trigger:hover {
    color: #0366d6 !important;
    background-color: #dbeafe;
}

.apps-dropdown-trigger i {
    font-size: 1rem;
}

.apps-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    right: -47px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 380px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.apps-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
}

.apps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.apps-header h3 {
    font-weight: 500;
    color: rgb(32, 33, 36);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.apps-list {
    padding: 0 0 10px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.apps-header {
    padding: 15px 20px 10px;
    border-radius: 8px 8px 0 0;
}

.apps-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgb(32, 33, 36);
}

.apps-list a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgb(32, 33, 36);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    gap: 12px;
}

.apps-list a:hover {
    color: #0366d6;
}

.apps-list a i {
    font-size: 1rem;
    color: rgb(95, 99, 104);
    width: 20px;
    text-align: center;
}

.apps-list a:hover i {
    color: #0366d6;
}

.apps-dropdown-trigger .apps-grid-icon {
    width: 1.3rem;
    height: 1.3rem;
    color: rgb(95, 99, 104);
    transition: fill 0.2s ease;
}

.notifications-dropdown-container {
    position: relative;
}

.notifications-dropdown-trigger {
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: rgb(95, 99, 104);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background-color: transparent;
}

.notifications-dropdown-trigger:hover {
    color: #0366d6;
    background-color: #dbeafe;
}

.notifications-dropdown-trigger i {
    font-size: 1.3rem;
}

.notification-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -3px;
    right: -2px;
    background-color: #ff4b4b;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: bold;
}

.notifications-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    right: -128px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 380px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.notifications-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
}

.notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.notifications-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgb(32, 33, 36);
}

.notifications-list {
    max-height: 360px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.notification-item {
    display: flex;
    align-items: start;
    padding: 10px;
    transition: background-color 0.2s;
    text-decoration: none;
    color: #374151;
    flex-shrink: 0;
}

.notification-item:hover {
    text-decoration: none;
}

.notification-item i {
    color: #6b7280;
    margin-top: 5px;
    margin-right: 12px;
}

.notification-content {
    flex: 1;
    margin-top: -3px;
}

.notification-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notifications-footer {
    padding: 10px 15px;
    text-align: center;
    margin-top: auto;
    flex-shrink: 0;
}

.notifications-footer a {
    color: #0366d6;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.notifications-footer a:hover {
    text-decoration: underline;
}

.no-notifications-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #657786;
    margin: 12px 0;
    flex-grow: 1;
    justify-content: center;
}

.no-notifications-message i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.no-notifications-message p {
    margin: 0;
    font-size: 0.9rem;
}

.profile-dropdown-container {
    position: relative;
}

.profile-dropdown-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.main-website-header-profile-picture {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: rgba(35, 130, 222, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f8fafc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.profile-dropdown-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: white;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #6b7280;
    border: 1px solid rgb(230, 230, 230);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: -1px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 380px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}

.profile-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.profile-dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgb(32, 33, 36);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
}

.profile-dropdown-menu a:hover {
    color: #0366d6;
    text-decoration: none;
}

.profile-dropdown-menu i {
    font-size: 1rem;
    color: rgb(95, 99, 104);
    width: 20px;
    text-align: center;
}

.profile-dropdown-menu a:hover i {
    color: #0366d6;
}

@media screen and (max-width: 992px) {
    .search-input {
        width: 120px;
    }

    .nav-left {
        gap: 10px;
    }

    .nav-item span {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 768px) {
    .search-container {
        display: none;
    }

    .nav-item {
        padding: 8px 10px;
    }

    .nav-item span {
        font-size: 0.8rem;
    }

    .nav-left {
        gap: 10px;
    }
}

.dropdown-profile-picture {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0;
    flex-shrink: 0;
}

.profile-dropdown-menu-view-profile-button {
    border-bottom: 1px solid rgb(230, 230, 230);
    margin-bottom: 5px;
    color: #0366d6 !important;
    display: flex !important;
    align-items: center;
    padding: 12px 16px !important;
}

.profile-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}

.profile-name {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgb(32, 33, 36);
}

.profile-email {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
    color: #6b7280;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.main-nav-bar-item {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    text-decoration: none;
    color: rgb(32, 33, 36);
    border-radius: 3px;
    font-size: 0.95rem;
    margin-bottom: 5px;
    margin-left: 6px;
    margin-right: 6px;
    font-weight: 500;
    position: relative;
    transition: all 0.2s ease;
}

.main-nav-bar-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: transparent;
    border-radius: 9999px 9999px 0 0;
    transition: all 0.2s ease;
}

.main-nav-bar-item:hover {
    color: #0366d6;
}

.main-nav-bar-item.active {
    color: #0366d6;
    font-weight: 600;
}

.main-nav-bar-item.active::after {
    background-color: #0366d6;
}


/************** Global website styling (styles that get applied to html elements that most html templates on the website have) **************/

.main-container {
    display: flex;
    gap: 25px;
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 8px;
    box-sizing: border-box;
    /*padding-left: 240px;*/
    max-width: 1400px;
    margin: 0 auto;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 36px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.no-results h3 {
    font-size: 18px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.no-results-description {
    color: #6b7280;
    margin: 0 0 28px 0;
    font-size: 14px;
    font-weight: 500;
}

.posting-form-title {
    text-align: center;
    justify-content: center;
    align-items: center;
}

.main-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-page-header-title {
    font-size: 20px;
    font-weight: 600;
    color: #24292e;
}

.main-page-bread-crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 0;
    font-size: 14px;
    color: #6b7280;
}

.main-page-bread-crumbs a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.main-page-bread-crumbs a:hover {
    text-decoration: underline;
}

.main-page-bread-crumbs .separator {
    margin: 0 8px;
    color: #6b7280;
    font-weight: 500;
}

.main-page-bread-crumbs .current-page {
    font-weight: 500;
    color: rgb(32, 33, 36);
}

input::placeholder,
textarea::placeholder {
    color: #657786;
    margin-left: 10px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #657786;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #657786;
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #657786;
    opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #657786;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="date"]:focus,
input[type="url"]:focus,
textarea:focus,
select.styled-select:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: #0366d6;
    outline: none;
}

input[type="datetime-local"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="search"],
input[type="time"],
select,
textarea {
    display: block;
    width: 100%;
    padding: 5px 12px;
    font-size: 0.95rem;
    line-height: 20px;
    color: rgb(32, 33, 36);
    vertical-align: middle;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: right 8px center;
    border: 1px solid rgb(230, 230, 230);
    border-radius: 8px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(225, 228, 232, 0.2);
    transition: 80ms cubic-bezier(0.33, 1, 0.68, 1);
    transition-property: color, background-color, box-shadow, border-color;
    box-sizing: border-box;
    height: 35px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="search"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
    border-color: #0366d6;
    outline: none;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="url"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
input[type="date"]:hover,
input[type="search"]:hover,
input[type="time"]:hover,
select:hover,
textarea:hover {
    border-color: #0366d6;
}

input[type="text"].tags-input {
    padding-left: 40px;
}

input.error,
select.error,
textarea.error {
    border-color: #cb2431;
}

input.error:focus,
select.error:focus,
textarea.error:focus {
    border-color: #cb2431;
    box-shadow: 0 0 0 3px rgba(203, 36, 49, 0.3);
}

input.success,
select.success,
textarea.success {
    border-color: #2ea44f;
}

input.success:focus,
select.success:focus,
textarea.success:focus {
    border-color: #2ea44f;
    box-shadow: 0 0 0 3px rgba(46, 164, 79, 0.3);
}

input:disabled,
select:disabled,
textarea:disabled {
    color: #959da5;
    background-color: #f6f8fa;
    border-color: rgb(230, 230, 230);
    box-shadow: none;
    cursor: not-allowed;
}

textarea {
    min-height: 100px;
    max-height: 500px;
    resize: vertical;
}

select {
    padding-right: 24px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23586069'%3E%3Cpath fill-rule='evenodd' d='M4.22 6.22a.75.75 0 0 1 1.06 0L8 8.94l2.72-2.72a.75.75 0 1 1 1.06 1.06l-3.25 3.25a.75.75 0 0 1-1.06 0L4.22 7.28a.75.75 0 0 1 0-1.06z'/%3E%3C/svg%3E");
    background-size: 16px;
    appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
    margin: 0;
    margin-right: 8px;
    vertical-align: middle;
}

.form-checkbox,
.form-radio {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.form-checkbox input[type="checkbox"],
.form-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-checkbox-label,
.form-radio-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding-left: 25px;
    user-select: none;
    font-size: 14px;
    color: rgb(32, 33, 36);
}

.form-checkbox-label::before,
.form-radio-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 1px solid rgb(230, 230, 230);
    transition: all 0.2s;
}

.form-checkbox-label::before {
    border-radius: 3px;
    background-color: #fff;
}

.form-radio-label::before {
    border-radius: 50%;
    background-color: #fff;
}

.form-checkbox input[type="checkbox"]:checked + .form-checkbox-label::before {
    background-color: #0366d6;
    border-color: #0366d6;
}

.form-radio input[type="radio"]:checked + .form-radio-label::before {
    border-color: #0366d6;
    border-width: 5px;
}

.form-checkbox-label::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-65%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transition: all 0.2s;
}

.form-checkbox input[type="checkbox"]:checked + .form-checkbox-label::after {
    opacity: 1;
}

.form-checkbox input[type="checkbox"]:focus + .form-checkbox-label::before,
.form-radio input[type="radio"]:focus + .form-radio-label::before {
    box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.3);
}

.input-group {
    position: relative;
    display: flex;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #586069;
    text-align: center;
    background-color: #f6f8fa;
    border: 1px solid rgb(230, 230, 230);
}

.input-group-prepend .input-group-text {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-append .input-group-text {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.form-validation-error {
    display: none;
    margin-top: 4px;
    font-size: 12px;
    color: #cb2431;
}

.error + .form-validation-error {
    display: block;
}

.form-text {
    margin-top: 4px;
    font-size: 12px;
    color: #586069;
}

.required-field::after {
    content: " *";
    color: #cb2431;
}

::placeholder {
    color: #657786;
    opacity: 1;
}

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-left: 32px;
}

.input-with-icon .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #586069;
    pointer-events: none;
}

.form-group {
    margin-bottom: 16px;
}

input[type="range"] {
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
    background: transparent;
}

input[type="range"]:focus {
    outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgb(230, 230, 230);
    border-radius: 2px;
}

input[type="range"]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #0366d6;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -6px;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
    background: #d1d5da;
}

input[type="range"]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgb(230, 230, 230);
    border-radius: 2px;
}

input[type="range"]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #0366d6;
    cursor: pointer;
    border: none;
}

.form-file {
    position: relative;
    display: inline-block;
}

.form-file-input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.form-file-label {
    display: inline-block;
    padding: 5px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: rgb(32, 33, 36);
    background-color: #fafbfc;
    border: 1px solid rgb(230, 230, 230);
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
}

.form-file-input:hover + .form-file-label {
    background-color: #f3f4f6;
    border-color: #d1d5da;
}

.form-file-input:focus + .form-file-label {
    border-color: #0366d6;
    box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.3);
}

.currency-input-wrapper {
    position: relative;
}

.currency-input-wrapper .currency-symbol {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(32, 33, 36);
    pointer-events: none;
}

.currency-input-wrapper input {
    padding-left: 24px;
}
