.btn {
    padding: 5px 14px;
    text-align: center;
    line-height: 32px;
    height: 32px;
    border-radius: 70px;
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    transition: color .3s, background .3s;
}

.btn-std-width {
    width: 122px;
}

.btn:focus {
    outline: 3px solid #ced5e4;
}

.btn_lightgray {
    color: #092E7B;
    background: #EFF2F8;
}

.btn_lightgray:hover,
.btn_lightgray:focus {
    background: #e3e6eb;
}

.btn_white {
    color: #092E7B;
    background: #FFF;
}

.btn_white:hover,
.btn_white:focus {
    background: #EFF2F8;
}

.btn_blue {
    color: #FFF;
    background: #092E7B;
}

.btn_blue:hover {
    background: #072666;
    color: #FFF;
}

.btn_blue:focus {
    background: #072666;
    color: #FFF;
}

.btn_blue:disabled {
    background: #EDEDED;
    border: 1px solid #E0E0E0;
    color: #9E9E9E;
}

.btn:disabled {
    cursor: default;
}

.btn_lightblue {
    color: #092E7B;
    background: #DDE6F9;
}

.btn_lightblue:hover {
    background: #E7EDFA;
}

.btn_transparent {
    background-color: transparent;
    border: 1px solid #485061;
    gap: 12px;
}

.btn_big {
    border-radius: 14px;
    height: 65px;
    font-size: 16px;
    line-height: 19px;
}

.btn_black {
    color: #FFF;
    background: #000;
}

.btn_black:hover {
    background: #333;
}

.btn_black:focus {
    background: #333;
    outline: 3px solid #ced5e4;
}

.btn_black:disabled {
    background: #EDEDED;
    border: 1px solid #E0E0E0;
    color: #9E9E9E;
    cursor: default;
}

.btn_black:active {
    background: #222;
}

.btn-grey {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-grey:hover {
    background-color: white;
    color: #007bff;
}

.btn-contact {
    background-color: #f0f4ff;
    color: #485061 !important;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #e2ebff;
    color: #111111;
}
