.glossy-button {
background: linear-gradient(to bottom, #151c5d, #1962a5);    border: none;
    color: white;
    padding: 10px 30px;
    font-size: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15pxrgb(8, 13, 58);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.glossy-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    transition: left 0.5s;
}

.glossy-button:hover::before {
    left: 125%;
}

.glossy-button:hover {
    background: linear-gradient(to bottom, #1962a5, #151c5d);
    box-shadow: 0 6px 20px, #151c5d;
    transform: scale(1.03);
}
