/* BUTTON STYLE - Blue gradient with user icon */
a.register-button {
    width: 180px;
    height: 51px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    background: linear-gradient(
        to bottom right,
        #2e8eff 0%,
        rgba(46, 142, 255, 0) 30%
    );
    background-color: rgba(46, 142, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 30px auto;
}

a.register-button:hover,
a.register-button:focus {
    background-color: rgba(46, 142, 255, 0.7);
    box-shadow: 0 0 10px rgba(46, 142, 255, 0.5);
    outline: none;
}

.register-button-inner {
    width: 176px;
    height: 47px;
    border-radius: 13px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    font-weight: 600;
}

.register-button-inner svg {
    width: 27px;
    height: 27px;
    fill: #fff;
}

.register-button-inner p {
    color: #fff;
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

/* Mobile view - smaller buttons */
@media (max-width: 768px) {
    a.register-button {
        width: 140px;
        height: 45px;
    }

    .register-button-inner {
        width: 136px;
        height: 41px;
    }

    .register-button-inner svg {
        width: 22px;
        height: 22px;
    }

    .register-button-inner p {
        font-size: 12px;
    }
}
