
.btn {
    border-radius: 8px;
    justify-content: center;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    width: max-content;
    height: 40px;
    padding: 15px 0;
    border: 0;
    padding-left: 24px;
    padding-right: 24px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
    border: 1px solid transparent;
    background-image: linear-gradient(90deg, #071e33 0%, #071e33 100%);
    transition: background .3s ease-in-out, box-shadow .3s ease-in-out,;
}

.btn:hover {
    box-shadow: 0 4px 12px 0 var(--Black-300, rgba(15, 24, 43, 0.16));
}


.btn--dark {
    background: #000000;
    color: #ffffff;
}

.btn--blue {
    background: #0C65DE;
    color: #ffffff;

    border: 1px solid #0C65DE;
}

.btn--blue:hover {
    background: #0455bf;
}

.btn--blue:active {
    background: white;
    color: #0C65DE;
}

.btn--small {
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: 700;
}

.btn--orange {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(90deg, #FF6236 0%, #FF3800 100%);
    border: none;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn--orange::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, var(--color-orange), var(--color-orange));
    opacity: 0;
    transition: opacity 0.4s linear;
    color: #ffffff;
    z-index: 1;
    transition: .3s all ease-in-out;
}

.btn--orange:hover::before {
    opacity: 1;
}

.btn--orange:active::before {
    background-image: linear-gradient(to right, white, white);
}

.btn--orange:active span {
    color: var(--color-orange);
}

.btn--orange:focus {
    border-color: var(--Black-400);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%), #FF6236;
    box-shadow: 4px 10px 32px 10px rgba(12, 101, 222, 0.24);
}

.btn--white {
    background: #EAF4F9;
    color: #181D27;
}

.btn--white:hover {
    background: #cad9e1;
    color: var(--color-text);
}

.btn--small {
    height: 32px;
    line-height: 32px;
}


@media (min-width: 1280px) {
    .btn {
        height: 60px;
        padding: 25px 40px;
        font-size: 18px;
    }
    .btn--small {
        height: 40px;
        line-height: 40px;
        font-weight: 700;
        font-size: 16px;
    }

}

@media (max-width: 350px) {
    .btn {
        width: max-content;
    }
}
