/* Button styles matching the login button style */

/* Override existing styles to match auth-btn */
.home-hero_btn.auth-btn,
.home-btn.auth-btn {
    background: linear-gradient(135deg, #0056b3, #00a8e8);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    margin-top: 15px;
}

.home-hero_btn.auth-btn:hover,
.home-btn.auth-btn:hover {
    background: linear-gradient(135deg, #003d82, #0083b5);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

/* Override any existing pseudo-elements */
.home-hero_btn.auth-btn:before,
.home-btn.auth-btn:before {
    display: none;
    /* Hide any existing pseudo-elements */
}

/* Add spacing between icon and text */
.home-hero_btn.auth-btn i,
.home-btn.auth-btn i {
    margin-right: 8px;
}

/* Mobile adjustments */
@media (max-width: 768px) {

    .home-hero_btn.auth-btn,
    .home-btn.auth-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}