.login-wrapper {
    max-width: 587px;
    width: 100%;
    height: 100%;
    padding: 30px 50px 35px; /* по-малко вертикално */
    background: white;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px; /* по-малко разстояние между елементи */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.text-center.mb-4 {
    margin-bottom: 16px !important;
}

.login-wrapper h2 {
    margin-top: 16px;
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 1.2;
}

.login-wrapper p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.mb-3 {
    margin-bottom: 12px !important;
}

.mb-4 {
    margin-bottom: 16px !important;
}

.login-button {
    padding: 8px;
    border-radius: 5px;
    border: none;
    background: #4ba13e;
    transition: 0.2s;

}
.login-button:hover {
    background: #61F072;
    transition: 0.4s;
}

.sign-in-text {
    color: #fff;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 16.8px */
    letter-spacing: 0.14px;
}

.sign-up-text {
    color: #4ba13e;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.16px;
}

.login-button-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.financial-summary {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    letter-spacing: 0.2px;
    line-height: 24px;
    color: black;
}

.summary-row {
    display: table;
    width: 100%;
    margin-bottom: 20px;
}

.summary-row > div {
    display: table-cell;
    vertical-align: middle;
    padding: 0 10px;
}

.summary-value,
.summary-subvalue {
    font-weight: 400;
}

.summary-label {
    text-align: left;
    font-weight: 400;
}

.summary-total {
    font-weight: 400;
    margin-bottom: 15px;
}

.summary-block {
    margin-top: 20px;
}

.payout-box {
    display: inline-block;
    width: 160px;
    height: 31px;
    padding: 5px 20px;
    background-color: #f9f9f9;
    border: 1px solid #d4d4d4;
    overflow: hidden;
    vertical-align: middle;
}

.payout-amount {
    color: #4ba13e;
    font-weight: 400;
    float: left;
}

.payout-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    float: right;
}

.payout-icon::before {
    content: "";
    position: absolute;
    width: 7.5px;
    height: 13.5px;
    top: 1.25px;
    left: 4.25px;
    background-color: #aaaaaa;
}

@media (max-width: 768px) {
    .login-wrapper {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .login-wrapper {
        padding: 20px 15px;
    }
}
