    .auth-btn {
    background-color: rgb(146, 144, 144);
    color: #000;
    border: 1px solid #ccc;
    padding: 5px 12px;
    margin-left: 5px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.auth-btn i {
    font-size: 14px;
}

.auth-btn:hover {
    background-color: #f97316; /* Orange like your Book Appointment button */
    color: white;
    border-color: #f97316;
}
