.button-container {
    display: flex;
    padding: 10px 0;
    gap: 20px;
}



.button1 {
    position: relative;
    color: #fff;
    /* background: linear-gradient(90deg, #df4343, #de6969); */
    background: linear-gradient(90deg, #ffffff31, #ffffff1e);
    backdrop-filter: blur(6px);
    border-radius: 4px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 100%);
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(6px);
}

.button1:hover {
    cursor: pointer;
    transition: all .3s ease-in;
    padding-right: 30px;
    padding-left: 30px;
}

.button2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 40px;
    background-color: transparent;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    transition: transform 0.2s ease;
    gap: 10px;
}

.button3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    border: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.close-button {
    position: absolute;
    z-index: 100;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 44px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.button2:hover {
    transform: scale(1.05);
    /* Slight hover effect */
}