.text-inter {
    font-family: "Inter", sans-serif;
}

.color-grey-1 {
    color: #969494;
}

.bg-grey-1 {
    background: #969494;
}

.btn-section{
    padding: 10px 25px;
    background: none;
    border: 2px solid #D7D7D7;
    border-radius: 15px;
}
.btn-section:hover{
    border-color: #4B7435;
}

.btn-edit{
    padding: 5px 30px;
    background: #838383;
    color: white;
    border: none;
    border-radius: 13px;
}
.btn-edit:hover{
    background: #4d4d4d;
    color: white;
}

.border-green{
    border-color: #4B7435;
}

.color-green-1 {
    color: #4B7435;
}
.color-green-1:hover {
    color: #96CA4C;
}

.bg-green-1 {
    background: #4B7435 !important;
    color: white !important;
}

.step-aside {
    background: #F0EEEE;
}

.bg-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D7D7D7;
    color: #969494;
}

.bg-circle-1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #D7D7D7;
    color: #969494;
}

.register-input {
    padding: 10px 15px;
    border-radius: 10px;
    border: 2px solid #D7D7D7;
}

.register-input:focus {
    border: 2px solid #969494;
    outline: unset;
}

.register-input::placeholder {
    color: #D7D7D7;
}

.btn-register {
    background: #F0EEEE;
    border: unset;
    padding: 15px 45px;
    border-radius: 15px;
}

.acknowledgment-check-input {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #282828;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;

    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    position: relative;
}

.acknowledgment-check-input[type=radio] {
    border-radius: 10%;
}

.acknowledgment-check-input:checked {
    background-color: #4B7435 !important;
    border-color: #4B7435 !important;
}

.acknowledgment-check-input::before {
    content: "\f00c";
    font-size: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}