* {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

p,
h1,
h2,
h3 {
    margin: 0px !important;
    padding: 0px !important;
}

h1 {
    font-size: 28px !important;
}

h2 {
    font-size: 24px !important;
}

h3 {
    font-size: 20px !important;
}

.bold {
    font-weight: bold;
}

.gray {
    color: #8A8A8D;
}

.white {
    color: white;
}

.orange {
    color: #EF7632;
}

.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-indicator {
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 25px;

    background-color: #8A8A8D;
    color: white;
}

.step-indicator.active {
    background-color: #EF7632;
}

.step-body {
    padding: 20px;
}

.step-bar-container {
    min-width: 50px;
}

.step-bar {
    background-color: #8A8A8D;
    width: 8px;
    height: 100%;
    border-radius: 4px;
}

.range-container {
    min-height: 40px;
}

.range-value-indicator {
    height: 40px;
    border-radius: 20px;

    background-color: #EF7632;
}

.icon-button {
    display: flex;
    justify-content: center;
    align-items: center;

    border: none;

    height: 40px;
    width: 40px;

    border-radius: 20px;
}

.icon-button.filled {
    background-color: #EF7632;
    color: white;
}

.icon-button.outlined {
    background-color: white;
    color: #EF7632;

    border: 1px solid #EF7632;
}

input[type='text'],
input[type='number'],
input[type='email'],
input[type='password'],
select,
textarea {
    height: 40px;
    border-radius: 20px !important;
    border: 1px solid #8A8A8D !important;
    padding-left: 15px;
    padding-right: 15px;
}

input[type='text']:focus,
input[type='number']:focus,
input[type='email']:focus,
input[type='password']:focus,
select:focus,
textarea:focus {
    outline: none;
    border: 1px solid #EF7632 !important;
}

textarea {
    height: 150px;
}

.debt-container {
    border: 1px solid #EF7632;
    border-radius: 20px;
    padding: 20px;
}

.custom-header {
    width: 100%;
    height: 100px;
    border: 1px solid #EF7632;
}

.custom-header-left {
    background-color: #EF7632;
}

input[type='range']{
    accent-color: #0075ff;
}