.botton-register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    margin: 50px auto;
    max-width: 800px;
    width: 90%;

    min-height: clamp(100px, 10vw, 170px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.botton-register-container:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.go-and-register {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.triple-box-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #fffbf0;
    background-color: #ff4500;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.triple-box-button:hover {
    background-color: #ff6347;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.arrow {
    font-size: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.triple-box-button:hover .arrow.left {
    transform: translateX(-5px);
}

.triple-box-button:hover .arrow.right {
    transform: translateX(5px);
}
.triple-image-container {
    margin: 10px;
    margin-top: 20px;
    width: 150px;
    height: 150px;
    align-self: center;
    display: flex; /* ✅ исправлено */
    justify-content: center;
    align-items: center;
}

.triple-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* масштабирует без обрезки */
    border-radius: 10px; /* по желанию */
}